javvascript shortcut code example
Example: what are some javascript shortcuts
// 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++
// 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++