Wow you have been viewing my site since 20 seconds!
+
Sep 24, 2024
function createCar(make, model) {
return {
make,
model,
drive() {
console.log(`Driving a ${this.make} ${this.model}!`);
}
};
}
const myCar = createCar('Toyota', 'Corolla');
myCar.drive(); // Output: Driving a Toyota Corolla!
Check my latest Blog Post