Walid-Shouman
11/13/2016 - 12:59 AM

Javascript tips and tricks

Javascript tips and tricks

Caution

This Gist is a WIP

Multiple variable assignment

var a, b, c;
a = b = c = 10;
alert(a + b + c)

source