最新回答 / qq_Change_fjpsNS
第一个参数为要查找的的字符串(数字),第二个参数规定从哪里查找。(确定好位置后找的顺序都是从左到右)数组最后一个数为-1,-2,-3以此类推....
2019-12-17
最新回答 / 慕田峪2351594
function inherit(subClass, superClass) { superClass.prototype = Object.create(superClass.prototype); superClass.prototype.constructor = subClass; }写错了 应该为subClass.prototype = Object.create(superClass.prototype);subClass.proto...
2019-12-13
{} instanceof Object
控制台报错:
VM132:1 Uncaught SyntaxError: Unexpected token 'instanceof';
换成:
var c = {};
c instanceof Object //true
控制台报错:
VM132:1 Uncaught SyntaxError: Unexpected token 'instanceof';
换成:
var c = {};
c instanceof Object //true
2019-11-29