Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View Abedin022's full-sized avatar

Sadman Abedin Abedin022

View GitHub Profile
@Abedin022
Abedin022 / number.js
Last active November 13, 2018 05:55
Addition, Subtraction, Multiplication & Division
let x = parseInt(process.argv[2]);
let y = parseInt(process.argv[3]);
console.log("Add:", x+y, "Sub:", x-y, "Mul:", x*y, "Div:", x/y);