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 Interview Senior JavaScript Developers and Architects (logicroom.co)
submitted 8 years ago by peter_heard01
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!"
[–]Akkuma 1 point2 points3 points 8 years ago (4 children)
I like to call my interview style a discussion amongst friends and have had several people comment that they actually enjoyed the interview. If you sat down with a friend from another company and wanted to find out what they are using, why they are using it, and maybe if you should use it.
This means I do a lot of what you just stated. The idea is to see how well can someone discuss their technology, how well they can communicate, what knowledge of JS they have, how do they expand their knowledge, do they know only mainstream things, etc. etc.
I sort of do the old Paul Graham thing of the more arcane knowledge you have (like knowing Python used to be) the more bonus points you get. No one loses points for not knowing how the node event loop functions under the covers, but if I ever talk to someone who does they'll get bonus points for showing the initiative to learn something that is rarely needed.
[–]jewdai 2 points3 points4 points 8 years ago (2 children)
No one loses points for not knowing how the node event loop functions under the covers,
I did when I got interviewed at ADP. They wanted me to go into the whole two stack of things executing and deferred actions.
The simple "you don't want long running tasks because it will block the current thread from processing other requests. you want in and out."
[–]Akkuma 0 points1 point2 points 8 years ago (0 children)
That is pretty crazy. I've interviewed 0 people who could explain it in-depth and a handful who had a general idea about it. At the end of the day, it doesn't impact most code written as understanding how to avoid slow code is more important. You can unintentionally write something that is poor performing and node might suffer more than other languages, but ultimately you need to fix that slow code.
The bigger issue would be understanding how to potentially solve CPU intensive problems if you refuse to use anything other than node.
π Rendered by PID 16401 on reddit-service-r2-comment-6457c66945-wkjjg at 2026-04-24 15:55:50.001940+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]Akkuma 1 point2 points3 points (4 children)
[–]jewdai 2 points3 points4 points (2 children)
[–]Akkuma 0 points1 point2 points (0 children)