Welcome to Questionaries, where you can ask questions and receive answers from other members of the community.

Let us know at info@questionaries.org

What should every JavaScript programmer know?

8 like 0 dislike
Is there a set of things that every JavaScript programmer should know to be able to say "I know JavaScript"?
asked 2 years ago by pollard (41,990 points)

1 Answer

2 like 0 dislike
 
Best answer
Understanding the stuff written in Crockford's Javascript: The Good Parts is a pretty good assumption that a person is a decent JS programmer.

You can pretty much know how to use a good library like JQuery and still not know the hidden parts of Javascript.

Another note is Debugging tools on various browsers. A JS programmer should know how to debug his code in different browsers.

Oh! And knowing JSLint will totally hurt your feelings!!
answered 2 years ago by william (91,210 points)
14
   

If you want to be a true JavaScript ninja, you should know the answers to every question in the Perfection kills JavaScript Quiz.

An example to whet your appetite:

(function f(f){
  return typeof f();
})(function(){ return 1; });

    What does this expression return?

        * “number”
        * “undefined”
        * “function”
        * Error
2 years ago by BloggeR (179,550 points)

Related questions

10 like 0 dislike
0 answers
10 like 0 dislike
1 answer
14 like 0 dislike
1 answer