Assignment Operators
Assignment Operators
Assignment operators assign values to JavaScript variables.
You can use multiple assignment operators in one line, such as x -= y += 9.
Please calculate and type the resulting value of the following expression:
var result = 20;
result *= 5;
var result = 20;
result *= 5;
Comments
Post a Comment