Skip to content

Instantly share code, notes, and snippets.

@rcstr
Created May 2, 2015 02:31
Show Gist options
  • Save rcstr/11163eaf1051041ba21e to your computer and use it in GitHub Desktop.
Save rcstr/11163eaf1051041ba21e to your computer and use it in GitHub Desktop.
a couple of things i learned about JS today
(function() {
"use strict";
{ // YAY! we can use braces just like this
let foo = 'bar';
}
console.log(foo); // undefined, the magic of let
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment