HTML Preparation code:
AخA
 
1
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.core.js"></script>
Script Preparation code:
 
function extractValues(obj) {
   const t = [];
   for(var key in obj) { t.push(obj[key]); }
   return t;
}
Tests:
  • Object.values(obj)

    x
     
    var i;
    var a = {};
    for (i = 0; i < 1000; i++) {
      a[i + ""] = i + "text";
    }
    Object.values(a);
  • _.values(obj)

     
    var i;
    var a = {};
    for (i = 0; i < 1000; i++) {
      a[i + ""] = i + "text";
    }
    _.values(a);
  • for...in

     
    var i;
    var a = {};
    for (i = 0; i < 1000; i++) {
      a[i + ""] = i + "text";
    }
    extractValues(a);
  • Object.keys(obj).map(key => obj[key])

     
    var i;
    var a = {};
    for (i = 0; i < 1000; i++) {
      a[i + ""] = i + "text";
    }
    Object.keys(a).map(key => a[key]);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Object.values(obj)
    _.values(obj)
    for...in
    Object.keys(obj).map(key => obj[key])

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36
Chrome 84 on Windows
View result in a separate tab
Test name Executions per second
Object.values(obj) 21060.3 Ops/sec
_.values(obj) 12955.6 Ops/sec
for...in 11866.5 Ops/sec
Object.keys(obj).map(key => obj[key]) 13446.3 Ops/sec