OOP
Object Oriented Programming
OOP:
Ex:
const dragon = {
name: 'tanya',
fire: true,
fight() {
return 5;
},
sing() {
if (this.fire) {
return `I'm ${this.name}, the breather of fire`;
}
}
};Last updated
