Skip to content

Instantly share code, notes, and snippets.

@PierraKimathi-zz
Created January 28, 2019 07:23
Show Gist options
  • Save PierraKimathi-zz/b89fcebca1c306e8fd0cd9df8b6b5840 to your computer and use it in GitHub Desktop.
Save PierraKimathi-zz/b89fcebca1c306e8fd0cd9df8b6b5840 to your computer and use it in GitHub Desktop.
Simple multiplication
function simpleMultiplication(number) {
var multi =0;
if(number%2==0){
multi = number*8;
}else{
multi = number*9;
}
return multi;
console.log(multi)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment