摘要:
阅读全文
摘要:
function test1(){ test2() } function test2(){ console.log(test2.caller) } test1() 运行结果 阅读全文
摘要:
阅读全文
摘要:
var sum=(function(n){ if(n<=1){ return 1 } return n+arguments.callee(n-1) })(10) console.log(sum) 运行结果 阅读全文
摘要:
function test1(){ console.log(arguments.callee) function test2(){ console.log(arguments.callee) } test2() } test1() function sum(n){ if(n<=1){ return 阅读全文
摘要:
阅读全文
摘要:
function test(a,b,c){ console.log(arguments.callee.length) console.log(test.length) console.log(arguments.length) } test(1,2) 运行结果 阅读全文
摘要:
阅读全文
摘要:
function Test(){ this.name='123' } var test=new Test() console.log(test.name) function Person(name,age){ this.name="geyao" this.age=18 } function Prog 阅读全文
摘要:
阅读全文
摘要:
function Test(b){ this.d=3; var a=1; function c(){ } } Test(123) console.log(window.d) // 运行结果 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
const a=[] console.log(a.constructor) console.log( a instanceof Array) var str=Object.prototype.toString.call(a) console.log(str) var arr=new Array(1, 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
function Car(){ } var car=new Car() function Person(){ } console.log(car instanceof Car) console.log(car instanceof Object) console.log([] instanceof 阅读全文
摘要:
阅读全文
摘要:
var geyao={ name:"geyao", age:18 } console.log('age' in geyao) //true function Car(){ this.brand='TAGE', this.color='red' } Car.prototype={ displaceme 阅读全文
摘要:
阅读全文