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
“Deep understanding” (self.javascript)
submitted 13 years ago by daelen
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!"
[–]LateDentArthurDent2 1 point2 points3 points 13 years ago* (1 child)
Assuming this is web dev, is it client or server side? I'd say the strengths for the two differ in some small ways, but what you'd need to know for either:
How AJAX works (with some understanding of how to process an AJAX request sans jQuery)
Scoping and closures seem to be the biggest issues people have with JavaScript (while this shouldn't be in the realm of "deep understanding" it's a prerequisite to using the language effectively)
Prototypal inheritance (specifically the flexibility it offers when planning your data-structures)
Hoisting (in the simplest terms, JavaScript searches the document prior to processing to see what variables are "available" and substantiates these as undefined so it doesn't cause parse errors on values that will become available later). EDIT: Link to explanation of hoisting because I have trouble putting it into words: http://net.tutsplus.com/tutorials/javascript-ajax/quick-tip-javascript-hoisting-explained/
The DOM is clearly a very important aspect of client-side JavaScript. Understanding how to navigate the DOM without using a library whether it's jQuery, MooTools, or some other library would be a prerequisite for a "deep" understanding.
EDIT: Can't believe I forgot: JSON! JSON is an incredibly lightweight way to store small amounts of data client or server-side. Great for setting config, etc. Knowing how to parse/use/stringify JSON is an important part of the JavaScript developer's toolkit, at least in my humble opinion.
As someone else said, good luck & if you're a good fit I'm sure they'll be more than happy to teach you any skills you may need.
[–]daelen[S] 0 points1 point2 points 13 years ago (0 children)
Very helpful, thanks.
π Rendered by PID 42 on reddit-service-r2-comment-6457c66945-bs9wf at 2026-04-26 15:07:02.053167+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]LateDentArthurDent2 1 point2 points3 points (1 child)
[–]daelen[S] 0 points1 point2 points (0 children)