<script>
var test = [1, 2, 3]
</script>
test = []
test.length = 0
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
new array | |
length |
Test name | Executions per second |
---|---|
new array | 3208175.0 Ops/sec |
length | 2907946.2 Ops/sec |
I'll break down the provided benchmark definition and test cases to explain what's being tested, compared, and analyzed.
What is being tested?
The main goal of this benchmark is to compare the performance difference between two approaches:
new Array()
.test.length = 0
).These tests aim to measure how long it takes for a JavaScript engine (in this case, Chrome 88) to execute each approach.
Options compared
Two options are being compared:
new Array()
test.length = 0
Pros and Cons:
Creating an empty array using new Array()
:
Array
constructor, it returns an instance of Array
, which is a constructor function. This might lead to some overhead due to the need to create a function call.Accessing the length property of an existing array:
Array
constructor.Library and purpose
There are no libraries being used in these tests. The tests only rely on built-in JavaScript functionality.
However, there's a library called 'MeasureThat' (not explicitly mentioned but referenced by MeasureThat.net) that provides this functionality. This library seems like an extension for MeasureThat.net to help measure different types of JavaScript code performance.
There are no special JS features or syntax being tested in these examples.
Alternative approaches
Other approaches could be tested, such as:
Array.from()
to create an empty arrayObject
constructor and then using the length
propertyconstant()
function to create an empty arrayThese alternatives would likely have similar performance characteristics, but might require additional setup or configuration.