Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript this Inside Function

function greet() {

    // this inside function
    // this refers to the global object
    console.log(this);
}

greet(); // Window {}
 
PREVIOUS NEXT
Tagged: #javascript #Inside #Function
ADD COMMENT
Topic
Name
9+2 =