🐵指尖猴
📚编程代码JavaScript类与继承
0字/分🎯0%
class Animal {   constructor(name) {     this.name = name;   }   speak() {     return `${this.name} makes a sound.`;   } } class Dog extends Animal {   speak() {     return `${this.name} barks.`;   } }
🐵
c左手中指
ESC 暂停 退格