<!--your preparation HTML code goes here-->
let e = [];
let d = new Date();
for(let i=0; i<100; i++){
e.push(new Date(d));
d.setDate(d.getDate()+1);
}
for(let i=0; i<100; i++){
+e[i];
}
for(let i=0; i<100; i++){
e[i].getTime();
}
for(let i=0; i<100; i++){
Number(e[i].getTime());
}
for(let i of e){
+i;
}
for(let i of e){
i.getTime();
}
for(let i of e){
Number(i);
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Plus for i | |
getTime() for i | |
Number() for i | |
Plus foreach | |
getTime foreach | |
Number foreach |
Test name | Executions per second |
---|---|
Plus for i | 163382.4 Ops/sec |
getTime() for i | 14842042.0 Ops/sec |
Number() for i | 1187312.2 Ops/sec |
Plus foreach | 173020.2 Ops/sec |
getTime foreach | 2853309.2 Ops/sec |
Number foreach | 196136.8 Ops/sec |
The benchmark provided compares various methods of converting Date objects to numbers in JavaScript, specifically focusing on three conversion techniques (+
, .getTime()
, and Number()
) used in two different types of loops: a traditional for
loop and a for..of
loop.
Conversion Methods:
+
Operator: This is the unary plus operator that attempts to convert its operand into a number. When applied to a Date object, it will implicitly call the Date's valueOf()
method which returns the primitive value of a Date object — effectively the timestamp in milliseconds..getTime()
Method: This method explicitly retrieves the timestamp (the number of milliseconds since January 1, 1970) directly from a Date object.Number()
Function: This function converts the Date object into a number. It calls the valueOf()
method under the hood to get the timestamp.Loop Types:
for
Loop: This loop iterates over the array e
by index. It is generally more performant for large collections due to lower overhead compared to certain other constructs.for..of
Loop: This is a more modern and cleaner syntax introduced in ES6 that allows iteration over iterable objects like arrays. It abstracts away index management and can be more readable but may carry a slight overhead in some cases.i
: Tests the unary plus operator in a traditional for
loop.i
: Tests the .getTime()
method in a traditional for
loop.i
: Tests the Number()
function in a traditional for
loop.for..of
loop..getTime()
method in a for..of
loop.Number()
function in a for..of
loop.From the benchmark results, we can conclude the following:
getTime()
method performs the best in both loop types. This is likely due to it being a direct method call that returns the numerical representation of the Date object without any additional conversion steps.+
operator has decent performance but trails behind getTime()
in a traditional loop and shows even lower performance in a for..of
loop.Number()
function is significantly slower than both the getTime()
method and unary plus operator, particularly in a for..of
loop, where it exhibits substantial overhead due to its function call nature.for
loop is simpler and tends to yield better performance compared to the for..of
loop for nearly all tested cases, suggesting that if performance is critical, sticking to traditional loop constructs may be advantageous.+
operator:
.getTime()
:
Number()
Function:
getTime()
access.In summary, in performance-critical applications, prefer using .getTime()
in a traditional for
loop for converting Date objects to numbers.