var func = new Function("return 2 * 3");
eval("2 * 3");
func();
function fff() { return 2 * 3; }
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
eval | |
new Function | |
func |
Test name | Executions per second |
---|---|
eval | 1784745.9 Ops/sec |
new Function | 10942080.0 Ops/sec |
func | 621493568.0 Ops/sec |
Let's break down the benchmark and explain what's being tested.
Benchmark Definition
The benchmark is defined in two parts: Script Preparation Code
and Html Preparation Code
. The latter is empty, so we'll focus on the former.
The script preparation code is a piece of JavaScript that creates a new function using the new Function()
constructor. This function takes a string literal as an argument and returns the result of evaluating that string as JavaScript code. In this case, the string is "return 2 * 3"
.
This means we have three test cases:
eval("2 * 3");
- uses the built-in eval()
function to execute the string as JavaScript code.func();
- calls a newly created function using the new Function()
constructor, passing the same string literal as an argument.function fff() { return 2 * 3; }
- creates a new anonymous function using the function declaration syntax.Options Compared
We're comparing three approaches:
Pros and Cons
Here are some pros and cons of each approach:
eval()
.Libraries and Special JS Features
There are no libraries involved in this benchmark.
Special JS Features
There is one special feature being tested:
new Function()
constructor uses function expressions, which were introduced in ECMAScript 5 (2015). This syntax allows creating anonymous functions that can be executed later.Alternative Approaches
Some alternative approaches to benchmarking this code might include:
(function() { var func = new Function("return 2 * 3"); return func(); })()
eval()
with other alternatives, such as Function constructor
or parser.parseScript
These alternative approaches would require modifications to the benchmark code and might provide more detailed insights into the performance characteristics of each approach.