Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

self or this javascript

// this
class User {
	constructor(name){
      this.name = name;
    }
  	
  	greet(){
      console.log(`Hi ${this.name}`); // Usage of this in function
    }
}
 
PREVIOUS NEXT
Tagged: #javascript
ADD COMMENT
Topic
Name
9+2 =