摘要:
1 function baseObject(){2 this.shit = function(){ alert('fuck'); }3 }4 function abc(){5 baseObject.call(this);6 }7 var o = new abc();8 console.log(o.shit) 阅读全文
摘要:
1 function dateFormat(optioner) {2 var a = new Date,b;3 return [a.getFullYear(), (b = (a.getMonth() + 1), b > 10 ? b : '0' + b), a.getDate()].join(optioner);4 }5 console.log(dateFormat('/')); 阅读全文