Answers for "variable = variable javascript"

1

js var

var a;
console.log(a);                // scrive in console "undefined" o "" a seconda del browser usato.
console.log('still going...'); // scrive in console "still going...".
Posted by: Guest on January-04-2021
1

var javascript

var is a keyword to define the varible in js but as of es-6 we, use let and const keywords for the same
Posted by: Guest on December-17-2020

Code answers related to "variable = variable javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language