Answers for "this keyword javscript"

11

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
Posted by: Guest on June-21-2021
0

this javascript

// Im Webbrowser ist das window Objekt das globale Objekt:
console.log(this === window); // true

a = 37;
console.log(window.a); // 37

this.b = "MDN";
console.log(window.b);  // "MDN"
console.log(b);         // "MDN"
Posted by: Guest on December-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language