es5에서 어떻게 한 종류를 성명하는가,es6에서 또 어떻게 클래스를 성명하는가
7152 단어 es6
es5
let Animal = function(type){
this.type = type
}
Animal.prototype.eat=function(){
console.log('like eat food')
}
var dog = new Animal("dog");
var mok = new Animal("mok");
console.log(dog);
console.log(mok)
mok.constructor.prototype.eat = function(){
console.log("haihai1")
}
dog.eat()
mok.eat()
es6
class Animal{
constructor(type){
this.type = type
}
eat(){
console.log('eat')
}
}
var dog = new Animal("dog");
var mok = new Animal("mok");
dog.eat()
mok.eat()
```javascript
class Animal{
constructor(type){
this.type = type
}
eat(){
console.log('eat')
}
}
var dog = new Animal("dog");
var mok = new Animal("mok");
dog.eat()
mok.eat()
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JavaScript로 카드 놀이를 넘기는 애니메이션을 만들려고했습니다.카드를 넘기는 애니메이션을 만들어 보았습니다. 폴더 구성은 다음과 같습니다. 코드는 다음과 같습니다. card_turning.html 다음은 JavaScript 코드입니다. cardTurning.js 결과는, 이런 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.