Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Another Bind() Example

 
	 class Person
	 {
	constructor(name)
		 {
			 this.name = name;
		 
		 function getName()
				 {console.log(this.name);
				 }

			let consoleName =	 getName.bind(this);
				 consoleName();
		 }	
	 }
	 
 
PREVIOUS NEXT
Tagged: #Another #Example
ADD COMMENT
Topic
Name
9+5 =