参考文章:http://www.jb51.net/article/87977.htm 这文章中没有讲明白,其实只要把文章里的代码加和不加return调试一下就知道是怎么回事了. var i = 0; function fn(){ i++; if(i < 10){ //fn return fn(); }else{ return i; } } var result = fn(); console.log(result);
JS中的 map, filter, some, every, forEach, for in, for of 用法总结和区别 :https://blog.csdn.net/hyupeng1006/article/details/79877710 本文链接:https://blog.csdn.net/hyupeng1006/article/details/79877710函数简述:map():返回一个新的Array,每个元素为调用func的结果filter():返回符合func条件的元素数组fi
1.map 有返回值,返回一个新的数组,每个元素为调用func的结果. let list = [1, 2, 3, 4, 5]; let other = list.map((d, i) => { return d * 2; }) console.log(other) 2.filter 有返回值,返回一个符合func条件的元素数组 let list = [1, 2, 3, 4, 5]; let other = list.filter((d, i) => { return d % 2; }) con