Skip to content

Instantly share code, notes, and snippets.

@sanketmeghani
Created September 3, 2017 09:59
Show Gist options
  • Select an option

  • Save sanketmeghani/827230b54b1b737f7bb6cab55cc3429a to your computer and use it in GitHub Desktop.

Select an option

Save sanketmeghani/827230b54b1b737f7bb6cab55cc3429a to your computer and use it in GitHub Desktop.
Semicolon insertion as per rule #1 subrule #2
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