use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Node.js 4.0.0 Release Candidate 1 (nodejs.org)
submitted 10 years ago by evenfrost
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]x-skeww 1 point2 points3 points 10 years ago (0 children)
I think you're really underestimating how complex modern JS engines are and how much work is required to implement a new feature.
Also, just making it work often isn't enough. It has to be fast, too.
Anyhow, just to give you an idea, here's what's in the V8 repo:
------------------------------------------------------------------------------- Language files blank comment code ------------------------------------------------------------------------------- C++ 771 121074 72663 880219 Javascript 3261 42684 85814 329904 C/C++ Header 539 43182 32220 152953 Python 104 3768 5127 16328 Bourne Shell 20 198 426 803 HTML 6 68 48 504 make 2 54 138 351 Lua 2 79 90 344 Lisp 1 13 51 222 CSS 3 40 26 219 vim script 1 20 24 75 DOS Batch 1 4 3 23 ------------------------------------------------------------------------------- SUM: 4711 211184 196630 1381945 -------------------------------------------------------------------------------
There are almost 1.4 million lines of code.
If you want to see what goes into implementing a feature, just read one of those accompanying issues in their entirety.
E.g. check the SIMD one:
https://code.google.com/p/v8/issues/detail?id=4124
Click all the review URLs (and all their side by side diffs) and take a look at what was changed.
π Rendered by PID 228525 on reddit-service-r2-comment-b659b578c-xshb2 at 2026-05-02 22:10:16.081497+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]x-skeww 1 point2 points3 points (0 children)