Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

JavaScript Variable Scope

// program to print a text 
let a = "hello";

function greet () {
    console.log(a);
}

greet(); // hello
 
PREVIOUS NEXT
Tagged: #JavaScript #Variable #Scope
ADD COMMENT
Topic
Name
7+2 =