Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Last active March 17, 2017 07:25
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/7470e18943ea35f101dbfeeb07f31644 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/7470e18943ea35f101dbfeeb07f31644 to your computer and use it in GitHub Desktop.
var foo;
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