<div id="a"></div>
let code = `${JSON.stringify(Array.from({length:300},(a,i)=>i))}.reduce((a,b)=>a+b)`,
Eval = eval
eval(code)
Eval(code)
Function(code)()
a.setAttribute('onclick', code)
a.click()
setTimeout(code)
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
eval | |
indirect eval | |
Function() | |
^on.+$ | |
setTimeout |
Test name | Executions per second |
---|---|
eval | 2214062.8 Ops/sec |
indirect eval | 1995268.1 Ops/sec |
Function() | 865034.6 Ops/sec |
^on.+$ | 18710.5 Ops/sec |
setTimeout | 698108.2 Ops/sec |
The benchmark provided evaluates the performance of different methods of executing JavaScript code that is generated as a string. This evaluation focuses on the handling of a specific piece of code generated in a preparation step.
eval(code):
eval
code
directly within the current execution context.Eval(code):
indirect eval
Eval
variable that references eval
in an indirect manner, allowing it to execute code without direct reference to eval
.eval
use in scope and context.eval
.eval
.Function(code)():
Function()
code
string and immediately invokes it.eval
, as it compiles the code into a function.setAttribute('onclick', code) a.click():
^on.+$
onclick
attribute of an element with the code
string and simulating a click.setTimeout(code):
setTimeout
code
after a timeout, running it as a separate asynchronous task.The benchmark results indicate performance measured in executions per second:
setAttribute
to handle onclick
showed the least performance, at just over 18,000 executions per second.Considerations:
Function(code)
might be preferred for evaluating untrusted code since it is faster and can provide some level of encapsulation.Alternatives:
In summary, this benchmark provides valuable insights into the performance characteristics of different ways to evaluate JavaScript code strings, aiding software engineers in making informed decisions regarding code execution in their applications.