Node.js Tutorial

Node.js Variables

Variables

Variables store data values. Node.js provides clear rules for declaring and updating variables.

  • Declare variables using Node.js conventions
  • Choose meaningful names
const http = require('http');
console.log("Node ready");
Try it Yourself