.this in javascript code example
Example 1: javascript this
console.log(this === window);
a = 37;
console.log(window.a);
this.b = "MDN";
console.log(window.b)
console.log(b)
Example 2: js this in object
var wF = {
w : 560,
h : function() { return (312 - 42) / (560 / this.w) + 42; }
};
alert(wF.h())
Example 3: javascript this = that
var colours = ['red', 'green', 'blue'];
document.getElementById('element').addEventListener('click', function() {
var that = this;
colours.forEach(function() {
});
});
Example 4: this javascript
console.log(this === window);
a = 37;
console.log(window.a);
this.b = "MDN";
console.log(window.b);
console.log(b);
Example 5: how to use this in js
console.log(this === window);
a = 37;
console.log(window.a);
this.b = "MDN";
console.log(window.b)
console.log(b)