Write program to Use the *= operator to multiply the variable x with 5.
var x = 10; // add code here console.log( x );
var x = 10; x *= 5; console.log( x );