Variables
Variables are created inside every Execution context for data allocation in the memory.
function two() {
var name; // undefined
}
function one() {
var name = "Vijay"; // "Vijay"
}
var name = "Deepak"; // "Deepak"


Last updated
Variables are created inside every Execution context for data allocation in the memory.
function two() {
var name; // undefined
}
function one() {
var name = "Vijay"; // "Vijay"
}
var name = "Deepak"; // "Deepak"


Last updated