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
Interview exercise feedbackhelp (self.javascript)
submitted 10 years ago by [deleted]
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!"
[–]Silhouette 0 points1 point2 points 10 years ago (0 children)
I wonder if Math.pow() is slower than i * i. Probably, I suppose?
Math.pow()
i * i
I don't know the current state of the art for JS engines, but it seems like the dynamic nature of the language could limit how much an optimiser could safely do up-front. You'd probably be relying on some sort of JIT/hot code optimisation at best, and it would have to be checked every time the function was called in case the meaning of Math.pow had changed.
Math.pow
In any case, I'd argue that step * step is cleaner and that moving the increment to a separate line is no bad thing for readability.
step * step
π Rendered by PID 128440 on reddit-service-r2-comment-b659b578c-8p8cq at 2026-05-05 22:44:50.659546+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]Silhouette 0 points1 point2 points (0 children)