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;

 
 100

Comments

Popular posts from this blog

Comparison Operators part 2

Break and Continue part 1

Module 2