Performance of Object.values(obj) vs_.values() vs for...in to extract values from an object

Compare performance between the native Object.values(obj) function vs the lodash _.values() option and a function that extracts the values of an object using a for...in loop.
one year ago
User agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.126 Safari/537.36
Test name Executions per second
Object.values(obj) 1477659.0 Ops/sec
_.values(obj) 1746058.0 Ops/sec
for...in 4067043.0 Ops/sec
HTML Preparation code:
Script Preparation code:
Tests:
  • Object.values(obj)

  • _.values(obj)

  • for...in

Open this result on MeasureThat.net