Array compare

Benchmark created on


Preparation HTML

		

Test runner

Ready to run.

Testing in
TestOps/sec
Stringify
let a = ['police', 2]
let b = ['police', 2]

console.log(JSON.stringify(a) === JSON.stringify(b))
ready
Join
let a = ['police', 2]
let b = ['police', 2]

console.log(a.join() === b.join())
ready
toString
let a = ['police', 2]
let b = ['police', 2]

console.log(a.toString() === b.toString())
ready

Revisions

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