JS学习笔记

1、for...in/of...对比
for...in...对数组支持不好
for...of...对简单对象支持不好

2、构造函数

3、一个例子解释this作用:
year = '2009';

var mydate = {
year : '2019',
getoldyear: function(){return year},
getnewyear: function(){return this.year}//this指向mydate这个引用它的变量
};

mydate.getoldyear();//输出2009
mydate.getnewyear();//输出2019

你可能感兴趣的:(JS学习笔记)