Skip to content

Instantly share code, notes, and snippets.

@MKRhere
Created March 14, 2018 09:52
Show Gist options
  • Save MKRhere/33040daf03ef6862b2e3f3630e14e836 to your computer and use it in GitHub Desktop.
Save MKRhere/33040daf03ef6862b2e3f3630e14e836 to your computer and use it in GitHub Desktop.
The mess that is ASI
const myVar = [5, 6, 7]
[ 1, 2, 3 ].forEach(x => console.log(x))
console.log(myVar)
const myVar = [5, 6, 7];
[ 1, 2, 3 ].forEach(x => console.log(x));
console.log(myVar);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment