AirScript 1.0 和 2.0 性能对比: Array.findIndex
相同的代码,AirScript 1.0 耗时 1312 毫秒,AirScript 2.0 耗时 1 毫秒。
const arr = Array.from( Array(30000).keys() )
const start = new Date()
console.log( arr.findIndex(n => n == 26816) )
console.log( new Date() - start, 'ms' )