Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Declaring Variables Shorthand javascript

// Declaring Variables javascript
// Longhand method:
let x;
let y;
let z = 3;


// Shorthand :
let x, y, z=3;
 
PREVIOUS NEXT
Tagged: #Declaring #Variables #Shorthand #javascript
ADD COMMENT
Topic
Name
7+5 =