Assignment Operators

 let age=56;

undefined

age+=2;

58

age*=2;

116

age-=5;

111

age/=5;

22.2

age%=4;

2.1999999999999993


Comments

Popular posts from this blog

Callback Hell

TODO list with DOM

Refactoring callback hell code