SIMD

Benchmark created on


Setup

const arrayOfStrings = [ "foo", "bar", "tom", "is", "a", "genious"];
const arrayOfNumbers = [ 1.2, 4.20, 6.9, 21.37, 0.7, 9.37 ];
const arrayOfInts = [ 1, 2, 3, 4, 5, 6 ];

Test runner

Ready to run.

Testing in
TestOps/sec
Strings
arrayOfStrings.find(item => item === "genious");
ready
Numbers
arrayOfNumbers.find(item => item === 9.37);
ready
Integers
arrayOfInts.find(item => item === 6);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.