this keyword in javascript medium
For All Regular function, this points to the WINDOW Object ( Global Context ) .
this keyword in javascript medium
For All Regular function, this points to the WINDOW Object ( Global Context ) .
what is this in javascript
// this = current execution context (window in browser, global in nodejs)
console.log(this) // window object
function foo () {
console.log(this); // object calling this function
}
foo(); // undefined
o={ foo }
o.foo(); // 'o' object logged
use of this keyword in js
The JavaScript this keyword refers to the object it belongs to.
It has different values depending on where it is used: In a method,
this refers to the owner object. Alone, this refers to the global
object.
new keyword in js
**Important Points**
1.It creates a new object. The type of this object is object.
2.It sets this new object's internal, inaccessible, [[prototype]] (i.e. __proto__) property to be the constructor function's external, accessible, prototype object (every function object automatically has a prototype property).
3.It makes the this variable point to the newly created object.
4.It executes the constructor function, using the newly created object whenever this is mentioned.
5.It returns the newly created object, unless the constructor function returns a non-null object reference. In this case, that object reference is returned instead.
Note: constructor function refers to the function after the new keyword, as in
new ConstructorFunction(arg1, arg2)
javascript this
// In web browsers, the window object is also the global object:
console.log(this === window); // true
a = 37;
console.log(window.a); // 37
this.b = "MDN";
console.log(window.b) // "MDN"
console.log(b) // "MDN"
this keyword in javascript
"use strict";
function myFunction() {
return this;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us