Lin4ipsum / advanced_js

syllabus and exercises from the Advanced Javascript class I'm teaching at NYU

Home Page:http://afeld.github.com/advanced_js/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Advanced JavaScript

Course Description

Learn best practices in JavaScript in this intensive, two-day course. Topics include data encapsulation, closures, binding, inheritance, and name spacing. Discover some of the lesser-known, yet useful, features of the language, such as how to debug JavaScript problems on different browsers and improve performance. Create interactive webpages using third-party JavaScript libraries.

Course Overview

We will dive into the nuances of JavaScript, how prototypal inheritance compares to classical inheritance, and how this can be used to build dynamic and complex web applications. Modern tools like jQuery and BackboneJS will be discussed, but students will learn the building blocks of these frameworks and after this course be able to understand what is happening under the hood. The focus will be on client-side development, though much applies to server-side systems like NodeJS, as well. Topics covered include:

  • Encapsulation, Closures and Scope
  • Classical vs. Prototypal Inheritance
  • The Event Loop
  • AJAX and JSONP
  • Creating Backbone-like models from scratch
  • Test- and Pseudocode-Driven Development

Topics will be demonstrated through live-code examples, available at http://afeld.github.com/advanced_js. Additional exercises will completed in-class.

Assignment

As homework, you are going to re-create the game Text Twist. The original (http://games.yahoo.com/console/tx) is an old-school Java applet... we want to bring it into this decade and port to JavaScript. Spend a bit of time playing it to get the feel (warning: addictive). The requirements:

  • two sets of letters (get a single set working first)
  • which set is used for each game (random vs. strict ordering): coder’s choice
  • letters from set displayed in random order at the start of each game
  • should be trivial to add additional sets
  • game should be playable with keyboard only (you might try jQuery keypress/keydown)
  • display a player’s progress within a game, either similar to the Yahoo implementation (empty boxes on the left), or in a different creative way
  • a countdown showing the time remaining (time limit up to you)
  • a way to reset the game when it ends
  • use at least one of the Contructor, Factory or Module patterns
  • commented, well-structured code

Bonus points:

  • additional sets of letters
  • automated tests
  • “twist” functionality (reshuffling the letters mid-game)
  • animations (using JavaScript or CSS3)
  • variations or enhancements to the gameplay (please provide a written explanation of the expected behavior)

You are welcome to publish on the web (think of your own name), but please email files/folder/.zip of all necessary files to instructor (alf9 [at] nyu [dot] edu) by the start of the second session. You will also have the option to demo your game to the class.

Resources

Required Reading

Recommended Reading

Tools

Reference

Grading

  • Class Participation – 30%
  • Homework – 40%
  • Quiz – 30%

Statements on Plagarism

SCPS

New York University takes plagiarism very seriously and regards it as a form of fraud. The definition of plagiarism that has been adopted by the School of Continuing and Professional Studies is as follows: "Plagiarism is presenting someone else's work as though it were one's own. More specifically, plagiarism is to present as one's own words quoted without quotation marks from another writer; a paraphrased passage from another writer’s work; or facts or ideas gathered, organized, and reported by someone else, orally and/or in writing. Since plagiarism is a matter of fact, not of the student's intention, it is crucial that acknowledgement of the sources be accurate and complete. Even where there is not a conscious intention to deceive, the failure to make appropriate acknowledgement constitutes plagiarism. Penalties for plagiarism range from failure for a paper or course to dismissal from the University.

Instructor

Reuse and building upon ideas or code are major parts of modern software development. As a professional programmer you will never write anything from scratch. Please respect the terms of use and/or license, and if you reimplement or duplicate an algorithm or code from elsewhere, credit the original source with an inline comment.


Using this repo

NodeJS is required (tested w/ Node v0.6.18). To run the examples/:

$ node run_tests.js

To run an individual exercise:

$ node run_tests.js examples/FILENAME.js

To build the examples as HTML:

$ node build.js

To build this README as a PDF:

$ gem install gimli
$ gimli
# outputs README.pdf

About

syllabus and exercises from the Advanced Javascript class I'm teaching at NYU

http://afeld.github.com/advanced_js/