/codeX_ProgrammingExercises

Basic programming exercises for project codeX coders

Primary LanguageJavaScript

#Basic coding assignments

##Required tutorials to be completed:

First do these: * http://www.codecademy.com/tracks/javascript * https://www.codeschool.com/courses/javascript-road-trip-part-1

Here’s a road map for learning Javascript:

##Required skills:

* Basic programming knowledge: 
	* variables
	* conditional statements - if
	* data structures - lists
	* loops - for, while loops

* Javascript
	* functions

* Test Driven Development
	* QUnit

Setup

* Create a javascript file for the module under test
* Create a javascript test file
* Create a html file that host the tests
	* Referencing QUnit
	* The test
	* and the module under test

If the functionality is to be exposed in a basic web application use these tools.

* JQuery
	* http://www.codecademy.com/tracks/jquery
	* Basic DOM manipulation http://api.jquery.com/append/
	* Basic form handling http://api.jquery.com/category/forms/
* LocalStorage
	* http://diveintohtml5.info/storage.html