Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

If you wish to set a method equal to another method in the class

  
	class Person
{
constructor(name)
{
	this.name = name
	this.x = function()
	{
this.fn();
	}
this.x();
	
}

fn()
{
	console.log(this.name);
}

}
 
PREVIOUS NEXT
Tagged: #If #set #method #equal #method #class
ADD COMMENT
Topic
Name
5+8 =