Test case name | Result |
---|---|
while (array.length > 0) { array.pop(); } | |
while (array.pop()) {} | |
array.length = 0; | |
array = []; |
Test name | Executions per second |
---|---|
while (array.length > 0) { array.pop(); } | 228277648.0 Ops/sec |
while (array.pop()) {} | 19190388.0 Ops/sec |
array.length = 0; | 35105048.0 Ops/sec |
array = []; | 74265104.0 Ops/sec |