Skip to content

Instantly share code, notes, and snippets.

@sanketmeghani
Last active September 3, 2017 09:56
Show Gist options
  • Save sanketmeghani/16941f6c3df8fbeac83821a05e459311 to your computer and use it in GitHub Desktop.
Save sanketmeghani/16941f6c3df8fbeac83821a05e459311 to your computer and use it in GitHub Desktop.
Semicolon insertion as per rule #1 subrule #1
let a = 10;
let b = true;
if(b) {
console.log('B is truthy')
}
console.log('A is ', a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment