-
string类型与正则配合查看全部
-
RegExp对象方法,compile改变,exec正则查看全部
-
gim,三个flag查看全部
-
重复匹配查看全部
-
分组(),重复\n次,只分组(?:)查看全部
-
范围符号。 转义 \查看全部
-
正则用/ / 括起来, / /.test() RegExp().test() 正则的字符查看全部
-
模块化查看全部
-
常用student.prototype = Object.create(Person.prototype),但是es5之后才支持,可以加个模拟函数。查看全部
-
instanceof判断prototype,所以在不同frame window下不能用,不同构造器查看全部
-
动态修改原型某个属性,student.prototype.x=2,会影响已经创建实例 但是如果直接整个赋值,将student.prototype = {y:2},则不会影响已经创建的,但影响之后创建的。查看全部
-
student.prototype = Object.create(person.prototype),创建空object;如果直接相等,则两个prototype指向同一个,修改student也会修改person 原型链向上查找一次查看全部
-
prototype是实例化后的对象指向的查看全部
-
字符串和数组查看全部
-
forEach查看全部
举报
0/150
提交
取消