Skip to content

Instantly share code, notes, and snippets.

@vishalm30
Created July 16, 2019 15:39
Show Gist options
  • Select an option

  • Save vishalm30/c0d5dd53154b9e6cb0dc88b026571692 to your computer and use it in GitHub Desktop.

Select an option

Save vishalm30/c0d5dd53154b9e6cb0dc88b026571692 to your computer and use it in GitHub Desktop.
function ispositive(x){
if (x > 0){
console.log('positive');
} else console.log('not positive');
}
function main(){
var a = ispositive(4);
var b = ispositive(0);
var c = ispositive(6);
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment