Get $500+ of the best After Effects files, video templates and music for only $20!
Nettuts+ Quiz #3: JavaScript

Nettuts+ Quiz #3: JavaScript

This entry is part 3 of 11 in the The Official Nettuts+ Quizzes Session
« PreviousNext »

Fancy yourself as a competent JavaScript developer? I’m back with another quiz today! Think you can get ‘em all and stake your claim to JavaScript glory?


A Few Notes

Ok, I may have exaggerated a bit in the intro. This quiz is best taken by those who are fluent with the basics of the language but not quite at the intermediate level yet. Most of the questions here are pretty simple once you’ve gone through the code carefully — the questions will look similar from a cursory look! And yes, the code is needlessly convoluted for a reason! This is not supposed to be something that you’ll really be seeing in real life. Hell, if I saw someone write code like this, I’d punch them in the teeth.

Most of the questions are about JavaScript basics merely wrapped around oddly annoying code for the sake of being interesting. This is just a fun quiz, not the developer equivalent of the bar or the MCATs! So relax and have fun! :)





A Friendly Plug

So how’d you do? If you liked today’s quiz, consider buying jQuizzy, the engine that powers it, on CodeCanyon. You’ll love it, I promise!

jQuizzy

Siddharth is Siddharth on Codecanyon
Add Comment

Discussion 89 Comments

Comment Page 2 of 2 1 2
  1. Valstorm says:

    Well this is a pointless waste of time, you can get those kinds of quizzes on Myspace cant you?

  2. Edward Longman says:

    Could you please elaborate on qus 9-12
    got half of them wrong and I can’t understand why,
    would quite like to know though

  3. Kardave says:

    @Edward Longman
    x+++y is the same as x++ + y.
    x++-++y+x++ is the same as x++ – ++y + x++
    if x=15, than x++ = 15 ,but now x=16
    if x=15, than ++x = 16, and x=16 too

  4. Deoxys says:

    This quiz is indeed just stupid -.-

  5. Abhishek Dev says:

    I was searching for the Error option in every question.

    Since console is not an Object of JavaScript Language but rather implemented by browser environments, using console in all the question would have thrown a “Reference Error”.

    BTW: Nice work to tickle mind of noobs

  6. Sree says:

    can you explain answre for below question
    var x=”5″, y=10;
    console.log(+x+y);

Comment Page 2 of 2 1 2

Add a Comment

To add a code snippet to your comment, please wrap your code like so: <pre name="code" class="html">YOUR CODE</pre>. You can replace the class name with "js," "css," "sql," or "php." If there are any "<" or ">" within your code, please search and replace them with: &lt; and &gt; respectively.