Ray's playground

 

2010年7月13日

Methods(Chapter 8 of JavaScript: The Good Parts)

摘要: JavaScript includes a small set of standard methods that are available on thestandard types.  array.concat(item...)[代码]2varb=['x','y','z'];3varc=a.concat(b,true);  array.join(separator)[代码]2a.push('d'... 阅读全文

posted @ 2010-07-13 23:02 Ray Z 阅读(188) 评论(0) 推荐(0)

导航