单项选择题
A.... B.Object.assign C.JSON.parse(JSON.stringifg()) D.以上都不对
const obj = null;alert(typeof(obj))的运行结果是()A.undefinedB...
单项选择题const obj = null;alert(typeof(obj))的运行结果是()
A.undefined B.null C.object D.""
let method = function(){}method.prototype.add = functio...
单项选择题let method = function(){}method.prototype.add = function(){ alert("ok");}let method1 = function(){}// 补全此处代码let obj = new method1();obj.add()?最终打印结果是‘ok’;()
A.method1.prototype=new method() B.method1=new method() C.method.prototype=new Fn2() D.以上都不对
在js中定义了一个什么构造函数来显示创建一个正则表达()A.Exp()B.RegExp()C.Reg()D.E...
单项选择题在js中定义了一个什么构造函数来显示创建一个正则表达()
A.Exp() B.RegExp() C.Reg() D.ExpReg()