JS Reference: Variables
Quick reference for Variables.
JS Reference — Variables
Quick summary of Variables with syntax and example.
Syntax
const x = 1;
Example
function add(a,b){return a+b;}
console.log(add(2,3));
Quick reference for Variables.
Quick summary of Variables with syntax and example.
const x = 1;
function add(a,b){return a+b;}
console.log(add(2,3));