美文网首页
学习笔记

学习笔记

作者: f359be24fd04 | 来源:发表于2019-07-22 16:50 被阅读0次

es5里面的类

例子代码

function Dog(){

this.name="dog";

this.age=1;

}

var dog=new Dog();

console.log(dog.name);

es6里面的类

class Dog{

name:string;

constructor(cname:string){

this.name=cname;

}

jump():void{

console.log(this.name);

}

}

相关文章

网友评论

      本文标题:学习笔记

      本文链接:https://www.haomeiwen.com/subject/vsbwlctx.html