Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save vishalm30/2ade28376ad823f5acdf06c1fc84a64f to your computer and use it in GitHub Desktop.
function iseven(x){
if (x % 2 === 0){
console.log(x+'is even!');
} else console.log(x + 'not even');
}
function main(){
var x = iseven(4);
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment