Variables
Variables store data values. Node.js provides clear rules for declaring and updating variables.
- Declare variables using Node.js conventions
- Choose meaningful names
NODEJS
const http = require('http');
console.log("Node ready");Try it Yourself