Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created March 17, 2017 06:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save debugmodedotnet/01f0a06290683d26283ed2c2e1504b45 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/01f0a06290683d26283ed2c2e1504b45 to your computer and use it in GitHub Desktop.
var foo = null;
var a = foo + 9;
var b = foo - 9;
var c = foo * 9;
var d = foo / 9;
console.log(a);
console.log(b);
console.log(c);
console.log(d);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment