最赞回答 / winner_DOIT
首先清楚countMap1 和 countMap2是对象,其次清楚countMap1[t1]作用是给countMap1对象设置属性,然后countMap1[t1]++ 和countMap1[t1] = 1都是给countMap1的t1属性赋值,TYPES[i] 这个意思是获取数组里第i个位置的值,例如:TYPES[0] 的值为‘string’,最后 if(countMap1[TYPES[i]].length !== countMap2[TYPES[i]].length){ return false;}...
2017-05-22
已采纳回答 / 敏而好学_
javascript中函数内部可以读取全局变量,因此访问到了变量popup;变量call作用域是立即执行函数内部,因此立即执行函数内部的Function函数可以访问到
2017-05-20
最新回答 / 灰色信念
<iframe width="214" scrolling="no" height="54" frameborder="0" allowtransparency="true" src="http://i.tianqi.com/index.php?c=code&id=42&icon=1&num=3"></iframe>调用天气预报插件
2017-05-15
最新回答 / 宝慕林1151284
首先Student.prototype 不会指向 Person.prototype;而是Student.prototype._proto_指向Person.prototype。也不存在直接指向 Person;他们之间的继承是通过原型链,一一往上继承使用的。这不是严格像Java那样继承,感觉是这样继承的形式,本质上还是有区别的。
2017-05-12