var array = [1,2,3];
var d = array[array.length - 1];
var z = array.at(-1);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
array[array.length - 1] | |
array.at(-1) |
Test name | Executions per second |
---|---|
array[array.length - 1] | 15809859.0 Ops/sec |
array.at(-1) | 10193630.0 Ops/sec |
Let's dive into explaining the benchmark.
Benchmark Definition
The provided JSON represents a JavaScript microbenchmark test case for two different ways of accessing the last element of an array: using array[array.length - 1]
and array.at(-1)
. The benchmark aims to compare the performance of these two approaches.
Options Compared
The benchmark compares two options:
array[array.length - 1]
: This approach uses the standard array indexing syntax, where you access an element at a specific index using square brackets ([]
). In this case, it's accessing the last element by subtracting 1 from the array length.array.at(-1)
: This approach uses the at()
method, introduced in ECMAScript 2019 (ES11), which allows you to access elements at a specific index without having to worry about out-of-bounds errors.Pros and Cons
Here are some pros and cons of each approach:
array[array.length - 1]
:array.at(-1)
:Library
In this benchmark, the at()
method is used from the ECMAScript Standard Library. The purpose of at()
is to provide a more expressive and safe way of accessing array elements at a specific index.
Special JavaScript Feature
The benchmark uses the at()
method, which was introduced in ECMAScript 2019 (ES11). This feature allows you to access elements at a specific index using a safer and more readable syntax than traditional indexing.
Other Considerations
When considering these approaches, keep in mind that:
array.at(-1)
might offer a slight performance advantage due to its bounds checking.Other Alternatives
If you need alternative ways to access array elements, consider:
array[-1]
(negative indexing): Accessing an element at a negative index, which can be useful for certain use cases.array[Array.prototype.length - 1]
: Another way to access the last element of an array using standard indexing syntax.Keep in mind that these alternatives may have different performance characteristics or trade-offs compared to the at()
method.