Run details:
Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1.2 Mobile/15E148 Safari/604.1 Lark/5.27.3 LarkLocale/zh_CN ChannelName/Feishu LKBrowserIdentifier/09E45726-881C-41F3-8BEE-82355A0AEA10
Mobile Safari 16
iOS 16.1.2
Mobile
2 years ago
Test name Executions per second
array reverse 213379.8 Ops/sec
typedArray reverse 571445.9 Ops/sec
array i/o 1580.1 Ops/sec
typedArray i/o 1680.4 Ops/sec
Script Preparation code:
AخA
 
var a = [...Array(10000)].map(_ => Math.random());
var ta = (new Float64Array(10000)).map(_ => Math.random());
Tests:
  • array reverse

     
    a.reverse();
  • typedArray reverse

     
    ta.reverse();
  • array i/o

     
    for (let i = 0; i < 10000; ++i)
      a[i] = a[i] + 1;
  • typedArray i/o

     
    for (let i = 0; i < 10000; ++i)
      ta[i] = ta[i] + 1;