Where can I find javascript native functions source code?

function, javascript, native-code

Solution

In the JavaScript engine's source code.

Problem

where can I find the source code of native js functions, for example I want to look at `eval()` function

Original source

Related problems