JavaScript this keyword 🚩



JavaScript this keyword 🚩

JavaScript this keyword 🚩

JavaScript this keyword tutorial example explained

#javascript #this #keyword

// ********* index.js *********

// this = A reference to the object that
// we’re currently working with

class Car{

constructor(make, model, year, color){
this.make = make;
this.model = model;
this.year = year;
this.color = color;
}

drive(){
console.log(“You drive the”,this.model);
}
brake(){
console.log(“You step on the”,this.model+”‘s brakes!”);
}
}

let car1 = new Car(“Ford”, “Mustang”, 2022, “red”);
let car2 = new Car(“Chevy”, “Corvette”, 2021, “blue”);

car1.drive();
car2.brake();

//console.log(this);

Comments are closed.