DEV Community

Adem Deliaslan
Adem Deliaslan

Posted on

Javascript Learning From Scratch -00006

Shortcuts of writing codes

var x = 200;
var y = 350;

x = x * y; is the same of x *= y;
x = x + y; is the same of x += y;

Top comments (0)