Posted in Javascript onOctober 29, 2010
它源于群里的某一题目:
有一个数n=5,不用for循环,怎么返回[1,2,3,4,5]这样一个数组
群的“糖果男孩”给的答案:
function getArr(n) { var a = [], b = [], m = 0; a.length = n + 1; a.toString().replace(/,/g, function () { b.push(++m); }); return b; }
javascript天然的迭代器
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@