Skip to content

Instantly share code, notes, and snippets.

@ungmo2
ungmo2 / vanilla-js-cheatsheet.md
Created September 9, 2016 08:40 — forked from thegitfather/vanilla-js-cheatsheet.md
Vanilla JavaScript Quick Reference / Cheatsheet
@ungmo2
ungmo2 / global-variables-are-bad.js
Created December 22, 2015 11:52 — forked from hallettj/global-variables-are-bad.js
How and why to avoid global variables in JavaScript
// It is important to declare your variables.
(function() {
var foo = 'Hello, world!';
print(foo); //=> Hello, world!
})();
// Because if you don't, the become global variables.
(function() {