object.keys vs for-in (v9)

Revision 9 of this benchmark created on


Setup

const ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";

function randomString(length) {
  const out = [];
  for (let i = 0; i < length; i++) {
    const randomChar = ALPHABET[Math.floor(Math.random() * ALPHABET.length)];
    out.push(randomChar);
  }
  return out.join("");
}

function randomObject(size) {
  const out = {};
  for (let i = 0; i < size; i++) {
  	out[randomString(10)] = Math.random();
  }
  return out;
}

function current(data) {
  return Object.keys(data).length === 0;
}

function suggested(data) {
  for (const key in data) {
    if (Object.hasOwn(data, key)) {
      return false;
    }
  }
  return true;
}

const data = Math.random() < 0.5 ?randomObject(100_000) : {};

Test runner

Ready to run.

Testing in
TestOps/sec
object.keys
console.log(current(data))
ready
for-in
console.log(suggested(data))
ready

Revisions

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