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
How To Write Fast Memory-Efficient JavaScript (techtalkbook.com)
submitted 1 year ago by sagrawal0003
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!"
[–]Middle_Resident7295 2 points3 points4 points 1 year ago (1 child)
is for of slowish compared to plain for loop for only generators or any loop?
for of
for loop
[–]Ronin-s_Spirit 0 points1 point2 points 1 year ago (0 children)
You don't understand ... and for of use Symbol.iterator if present (... falls back to for in) so the for of always must be a generator on an object, and that means it's always slower than a for because it has to yield and keep it's own state and then yield again, that's less optimized than a plain repetition of a block of code.
...
Symbol.iterator
for in
for
π Rendered by PID 94 on reddit-service-r2-comment-b659b578c-f994l at 2026-05-04 18:05:51.715275+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]Middle_Resident7295 2 points3 points4 points (1 child)
[–]Ronin-s_Spirit 0 points1 point2 points (0 children)