startit/eloquentjavascript/06_Objects/obj.js

14 lines
267 B
JavaScript
Raw Normal View History

2024-09-30 11:18:07 +02:00
function speak(line){
console.log(`The ${this.type} rabbit says '${line}'`)
}
let whiteRabbit = {
type: "white", speak
};
let hungryRabbit = {
type: "hungry", speak
};
whiteRabbit.speak("Oh my fur and whiskers");
hungryRabbit.speak("Got any carrots?");