В функциях, вызывая самостоятельно, эта ниже консоль.

	 (function()
 {
	 
	 
	 
	 class Person
	 {
	constructor(name)
		 {
			 this.name = name;
			 console.log(this);
		 }	
	 }
	 
 
	 const p = new Person("John Smith");
	 
 })()
 /*console.log(this) will be Object with name of "John Smith"*/
 
Javasper