Skip to content

Instantly share code, notes, and snippets.

@sanketmeghani
Last active September 3, 2017 10:01
Show Gist options
  • Select an option

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

Select an option

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