<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
var data = [
{
"V20926": "Středočeský",
"V20925": "@DTM_46032",
"V20928": "@DTM_46033",
"iproc_case_status": null,
"iproc_name": "t3f-1141 DT multi",
"iproc_description": null,
"iproc_inst_owner_user": "Fanda Josef",
"iproc_actual_start_date": "2020-10-06T06:40:59.000Z",
"iproc_due_date_finish": null,
"iproc_priority": "M",
"iproc_summary": "t3f-1141 DT multi: Fanda Josef, \nt3f-1141 DT multiÚkol - url v podminkach: Fanda Josef",
"iproc_actual_finish_date": null,
"IPROC_ID": 13849,
"CS_NAME_CS": null,
"CS_NAME_EN": null,
"CS_NAME_SK": null
},
{
"V20926": null,
"V20925": null,
"V20928": null,
"iproc_case_status": null,
"iproc_name": "t3f-1141 DT multi",
"iproc_description": null,
"iproc_inst_owner_user": "Fanda Josef",
"iproc_actual_start_date": "2020-10-05T13:32:50.000Z",
"iproc_due_date_finish": null,
"iproc_priority": "M",
"iproc_summary": "t3f-1141 DT multi: Fanda Josef, \nt3f-1141 DT multiÚkol - url v podminkach: Fanda Josef",
"iproc_actual_finish_date": null,
"IPROC_ID": 13848,
"CS_NAME_CS": null,
"CS_NAME_EN": null,
"CS_NAME_SK": null
},
{
"V20926": null,
"V20925": null,
"V20928": null,
"iproc_case_status": null,
"iproc_name": "t3f-1141 DT multi",
"iproc_description": null,
"iproc_inst_owner_user": "Fanda Josef",
"iproc_actual_start_date": "2020-10-05T12:07:04.000Z",
"iproc_due_date_finish": null,
"iproc_priority": "M",
"iproc_summary": "t3f-1141 DT multi: Fanda Josef, \nt3f-1141 DT multiÚkol - url v podminkach: Fanda Josef",
"iproc_actual_finish_date": null,
"IPROC_ID": 13847,
"CS_NAME_CS": null,
"CS_NAME_EN": null,
"CS_NAME_SK": null
},
{
"V20926": null,
"V20925": null,
"V20928": null,
"iproc_case_status": null,
"iproc_name": "t3f-1141 DT multi",
"iproc_description": null,
"iproc_inst_owner_user": "Fanda Josef",
"iproc_actual_start_date": "2020-10-05T11:46:14.000Z",
"iproc_due_date_finish": null,
"iproc_priority": "M",
"iproc_summary": "t3f-1141 DT multi: Fanda Josef, \nt3f-1141 DT multiÚkol - url v podminkach: Fanda Josef",
"iproc_actual_finish_date": null,
"IPROC_ID": 13846,
"CS_NAME_CS": null,
"CS_NAME_EN": null,
"CS_NAME_SK": null
},
{
"V20926": "Jihočeskýyy",
"V20925": null,
"V20928": "1",
"iproc_case_status": null,
"iproc_name": "t3f-1141 DT multi",
"iproc_description": null,
"iproc_inst_owner_user": "Fanda Josef",
"iproc_actual_start_date": "2020-10-05T07:35:30.000Z",
"iproc_due_date_finish": null,
"iproc_priority": "M",
"iproc_summary": "t3f-1141 DT multi: Fanda Josef",
"iproc_actual_finish_date": null,
"IPROC_ID": 13845,
"CS_NAME_CS": null,
"CS_NAME_EN": null,
"CS_NAME_SK": null
},
{
"V20926": null,
"V20925": null,
"V20928": null,
"iproc_case_status": null,
"iproc_name": "t3f-1141 DT multi",
"iproc_description": null,
"iproc_inst_owner_user": "Fanda Josef",
"iproc_actual_start_date": "2020-10-02T14:16:13.000Z",
"iproc_due_date_finish": null,
"iproc_priority": "M",
"iproc_summary": "t3f-1141 DT multi: Fanda Josef",
"iproc_actual_finish_date": null,
"IPROC_ID": 13844,
"CS_NAME_CS": null,
"CS_NAME_EN": null,
"CS_NAME_SK": null
},
{
"V20926": null,
"V20925": null,
"V20928": null,
"iproc_case_status": null,
"iproc_name": "t3f-1141 DT multi",
"iproc_description": null,
"iproc_inst_owner_user": "Fanda Josef",
"iproc_actual_start_date": "2020-10-02T14:14:22.000Z",
"iproc_due_date_finish": null,
"iproc_priority": "M",
"iproc_summary": null,
"iproc_actual_finish_date": null,
"IPROC_ID": 13843,
"CS_NAME_CS": null,
"CS_NAME_EN": null,
"CS_NAME_SK": null
}
]
for (var d of data) {
}
data.forEach(d => {
})
_(data).forEach(function(n) {
});
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
for of | |
forEach | |
_forEach |
Test name | Executions per second |
---|---|
for of | 13009004.0 Ops/sec |
forEach | 14161423.0 Ops/sec |
_forEach | 3466511.5 Ops/sec |
To provide an answer, I need to analyze the provided JSON data and determine which of the individual test cases produce the highest number of executions per second.
Based on the latest benchmark result, the order from highest to lowest is:
_forEach
(TestName: "_forEach") - 3,466,511.5 ExecutionsPerSecondfor of
(TestName: "for of") - 13,090,040.0 ExecutionsPerSecondforEach
(TestName: "forEach") - 14,161,423.0 ExecutionsPerSecondThe results suggest that the _forEach
test case produces the most executions per second, followed closely by the for of
and then the forEach
tests.
Please provide more context or clarify which specific metrics you would like to use for comparison.