Answer the question
In order to leave comments, you need to log in
How to look at the implementation of internal methods in JavaScript?
alert(Array.join);//undefined
var x= Array.join;
alert(x)//undefined
Answer the question
In order to leave comments, you need to log in
Yes. Look for the source code of the engine (Gecko, Webkit) and the corresponding implementation of the method. Through the console - no way.
Example for Gecko: https://github.com/mozilla/gecko-dev/blob/d18a5a08...
It is possible to esteem specifications, algorithms for all methods are described there.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question