26
loading...
This website collects cookies to deliver better user experience
const person = {
firstName: "John",
lastName : "Doe",
id : 5566,
fullName : function() {
return this.firstName + " " + this.lastName;
}
};
console.log(person.fullName()); //output John Doe
console.log(this); //output window
“use strict”
console.log(this); //output window
function myFunction() {
return this;
}
console.log(myFunction()); //output window
“use strict”
function myFunction() {
return this;
}
console.log(myFunction()); //output undefined
<button onclick="this.style.display='none'">
Click to Remove Me!
</button>
const person1 = {
fullName: function() {
return this.firstName + " " + this.lastName;
}
}
const person2 = {
firstName:"John",
lastName: "Doe",
}
const person3 = {
firstName:"Feroj",
lastName: "Alam",
}
console.log(person1.fullName.call(person2)); //output John Doe
console.log(person1.fullName.apply(person3)); //output Feroj Alam