what are some javascript shortcuts

JavaScript
// If you want to write the code x=x+2, you can just go x += 2. 
// If you want to write the code x += 1, you can just go x++
Source

Also in JavaScript: