参见英文答案 >
Why most JavaScript native functions are slower than their naive implementations?1个
我想对我正在使用的函数进行基准测试,以确定对象数组中是否存在使用map()和some()的重复属性与另一个执行相同操作但在另一个内部使用for()的函数( ).
我想对我正在使用的函数进行基准测试,以确定对象数组中是否存在使用map()和some()的重复属性与另一个执行相同操作但在另一个内部使用for()的函数( ).
let array = [ { "value": 41},{ "value": 12},{ "value": 32} ]; let itens = array.map(x => x.value); let haveDuplicate = itens.some((item,idx) => itens.indexOf(item) !== idx);
与:
let array = [ { "value": 41},{ "value": 32} ]; let haveDuplicate = false; for (let i = 0; i < array.length; i++) { let x = array[i]; for (let j = (i + 1); j < array.length; j++) { if (array[j]) { let y = array[j]; if (x.value === y.value) { haveDuplicate = true; return; } else { haveDuplicate = false; } } } }
使用JsPerf我可以看到使用map()和some()的函数运行速度慢了90%~100%.
Click here to check the benchmark
有人能解释一下为什么吗?
编辑:这个问题与这个问题重复:Why most JavaScript native functions are slower than their naive implementations?