Skip to content

Instantly share code, notes, and snippets.

@theanam
Created September 29, 2018 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theanam/6b067c632ab40753ff0c34794d5f477f to your computer and use it in GitHub Desktop.
Save theanam/6b067c632ab40753ff0c34794d5f477f to your computer and use it in GitHub Desktop.
LWHH JavaScript Course Number Project
let x = parseInt(process.argv[2]);
let y = parseInt(process.argv[3]);
console.log(x+y);
@musakazim989
Copy link

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);

@salehahmadbabu
Copy link

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);

@mhasanrabbi
Copy link

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);

@partho2003
Copy link

let x = parseInt(process.argv[2]);
let y = parseInt(process.argv[3]);

console.log(x+y);
console.log(x-y);
//hw
console.log(x/y);
console.log(x*y);

@mm-uddin
Copy link

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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment