Skip to content

Instantly share code, notes, and snippets.

@alkayesdev
Created October 16, 2018 19:12
Show Gist options
  • Select an option

  • Save alkayesdev/2699cd75eeacd05342fab40670fbf367 to your computer and use it in GitHub Desktop.

Select an option

Save alkayesdev/2699cd75eeacd05342fab40670fbf367 to your computer and use it in GitHub Desktop.
for loop project
let num = +process.argv[2];
if(!Number.isInteger(num)){
console.log("the provided is not a number");
process.exit();
}
for(let i=1; i<=10; i++){
console.log(`${num}x${i} = ${num*i}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment