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
Node.js Tutorial
Variables store data values. Node.js provides clear rules for declaring and updating variables.
const http = require('http');
console.log("Node ready");