一些簡單的東西,被引用和拷貝坑了下。javascript
function *ngrams(sequence, n) { let g = (function *(sequence){yield *sequence})(sequence); let history = []; while (n > 1) { history.push(g.next().value); n--; } for (let item of g) { history.push(item); // look at here. // yield Array.from(history); yield history; history.shift(); } }
若是這時候用Array.from。。。WTF,什麼鬼java
> Array.from(ngrams([1,2,3,4,5], 3)); [ [ 4, 5 ], [ 4, 5 ], [ 4, 5 ] ]
若是for of數組
> for (let w of ngrams([1,2,3,4,5], 3)){console.log(w);} [ 1, 2, 3 ] [ 2, 3, 4 ] [ 3, 4, 5 ]
很懷疑Array.from幹啥了。。。app
> Array.from(ngrams([1,2,3,4,5], 3), (v)=>{console.log(v)}); [ 1, 2, 3 ] [ 2, 3, 4 ] [ 3, 4, 5 ] > Array.from(ngrams([1,2,3,4,5], 3), (v)=>v); [ [ 4, 5 ], [ 4, 5 ], [ 4, 5 ] ] > Array.from(ngrams([1,2,3,4,5], 3), (v)=>v+1); [ '1,2,31', '2,3,41', '3,4,51' ]
這就明晰了,沒想到會在js中碰到這種問題。。。ide
中午見有人討論求一個數組最小值時這樣:this
Math.min.apply(Object.create(null), [1,2,3]);code
說相比高程上說的方法,能更好防止變量污染。ip
因而去翻了翻spidermonkey和v8的實現,發現這個this根本就沒用。。。至於apply,咱們如今有v8
Math.min(...[1,2,3]);it
ES6大法好啊。。。