Skip to content

Instantly share code, notes, and snippets.

View tanveer19's full-sized avatar
🎯
Focusing

Tanveer Hossain Jony tanveer19

🎯
Focusing
View GitHub Profile
@tanveer19
tanveer19 / number.js
Last active October 5, 2018 22:38
addition, subtraction, multiplication, division using nodejs
let x = parseInt(process.argv[2]);
let y = parseInt(process.argv[3]);
console.log(x+y);
console.log(x-y);
console.log(x*y);
console.log(x/y);