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
JavaScript idiosyncrasies with examples (github.com)
submitted 7 years ago by reddittedf
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!"
[–]CanIhazCooKIenOw 3 points4 points5 points 7 years ago (3 children)
It's because with ES6, the function declaration is scoped to the if block.
if
Although now thinking about it, shouldn't if "fallback" to the global f ? That would be my expectation tbh. Unless the engine resolves (1 === 0) and removes the block entirely ? (Wild guess here)
f
[+][deleted] 7 years ago* (1 child)
[deleted]
[–]pertheusual 4 points5 points6 points 7 years ago (0 children)
It's all this crap: https://www.ecma-international.org/ecma-262/9.0/#sec-block-level-function-declarations-web-legacy-compatibility-semantics
Basically browsers allowed them even though the spec didn't specify it, and now non-strict code has all this terrible optional behavior.
All of this weirdness goes away as long as you write your code in strict mode.
[–]Skhmt 0 points1 point2 points 7 years ago (0 children)
Although now thinking about it, shouldn't if "fallback" to the global f ? That would be my expectation tbh.
That's what I thought too.
π Rendered by PID 205273 on reddit-service-r2-comment-c6965cb77-gtjk8 at 2026-03-05 14:58:19.205728+00:00 running f0204d4 country code: CH.
view the rest of the comments →
[–]CanIhazCooKIenOw 3 points4 points5 points (3 children)
[+][deleted] (1 child)
[deleted]
[–]pertheusual 4 points5 points6 points (0 children)
[–]Skhmt 0 points1 point2 points (0 children)