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.
5 years ago
User agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:70.0) Gecko/20100101 Firefox/70.0
Test name Executions per second
Object.values(obj) 7888071.0 Ops/sec
_.values(obj) 2390112.0 Ops/sec
for...in 17864430.0 Ops/sec
HTML Preparation code:
Script Preparation code:
Tests:
  • Object.values(obj)

  • _.values(obj)

  • for...in

Open this result on MeasureThat.net