thomaseng
No Smoking , New Live !

导航

 

2013年4月8日

摘要: 先上图:代码演示:var arr=[];arr.push('tom','james','alen','peter');console.log(arr.length);//这里toString()一下,不然用console.log()就看不到效果了console.log(arr.toString());console.log('----------------');//popconsole.log('pop:'+arr.pop());console.log(arr.length);console.lo 阅读全文
posted @ 2013-04-08 03:54 thomaseng 阅读(429) 评论(0) 推荐(0) 编辑
 
摘要: //自定义高效的处理字符串拼接的类function StringBuffer () { this._strings_ = new Array();}StringBuffer.prototype.append = function(str) { this._strings_.push(str);};StringBuffer.prototype.toString = function() { return this._strings_.join("");};//定义结束var d1 = new Date();var str = "";for (var i=0 阅读全文
posted @ 2013-04-08 01:41 thomaseng 阅读(199) 评论(0) 推荐(0) 编辑
 
摘要: 阅读全文
posted @ 2013-04-08 01:02 thomaseng 阅读(117) 评论(0) 推荐(0) 编辑