DEV Community

Discussion on: Six (Dirty) Ways to shorten your Javascript

Collapse
 
kqwq profile image
kqwq

Declaring a variable without (var, let, const) will put it in the global scope. Wouldn't recommend it for anything besides code golf lol

x = 5;
Enter fullscreen mode Exit fullscreen mode

Is equivalent to

window.x = 5; // Web JavaScript
global.x = 5; // Node.js
Enter fullscreen mode Exit fullscreen mode