Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
33
rated 0 times [  36] [ 3]  / answers: 1 / hits: 16748  / 15 Years ago, mon, september 21, 2009, 12:00:00

Which is the fastest JavaScript engine? Does it really matter?


More From » performance

 Answers
38

For production you generally don't need to care about which JavaScript engine is the fastest. Your page should work in all common browsers, period.



However, in certain projects where you are free to choose which browsers to support (such as hobby projects or projects for internal use), you'll find that the performance in different browsers varies a lot.



The two browsers I find to maintain top performance are Mozilla Firefox with its Spider Monkey engine and Google Chrome with its V8 engine. Apple Safari is also one of the fastest browsers with its Nitro engine, new in 4.0. They use new methods for compiling the scripts, making them perform much, much faster than before. In the future, more and more browsers will move towards this technology, as JavaScript is becoming one of the main technologies for interactive user content on the web. (I haven't mentioned Opera 10 here because I haven't personally tested it extensively, but I've heard it's faster at running JavaScript too.)


[#98649] Thursday, September 17, 2009, 15 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
martina

Total Points: 101
Total Questions: 103
Total Answers: 111

Location: Seychelles
Member since Mon, Jun 28, 2021
3 Years ago
;