Write program to Use the += operator to add a value of 5 to the variable x.
var x = 10; // add code here console.log( x );
var x = 10; x += 5; console.log( x );