Skip to content

Instantly share code, notes, and snippets.

@NitkarshChourasia
Created February 26, 2024 20:31
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 NitkarshChourasia/58ea578246e400ea7f1d4a55611969f0 to your computer and use it in GitHub Desktop.
Save NitkarshChourasia/58ea578246e400ea7f1d4a55611969f0 to your computer and use it in GitHub Desktop.
Node.js Zero to Hero in 3 Days - Node.js Assignment Q&A
// Node.js Assignment
const add = 10 + 2;
console.log(`The added value is ${add}`);
const subs = 10 - 2;
console.log(`The subtracted value is ${subs}`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment