Skip to content

Instantly share code, notes, and snippets.

@jonluca
Created March 15, 2018 04:03
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 jonluca/ce8f20f7582d2444e0618bf51d714a5b to your computer and use it in GitHub Desktop.
Save jonluca/ce8f20f7582d2444e0618bf51d714a5b to your computer and use it in GitHub Desktop.
Testing zero
let mVar = 0;
function setVarToOne(mVar){
mVar = 1;
}
setVarToOne(undefined);
ASSERTEQ(mVar,0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment