JavaScript
@JavaScript
- http://matt.might.net/articles/learning-javascript-in-small-bites-part-2/
- http://matt.might.net/articles/learning-javascript-in-small-bites-part-3/
- http://matt.might.net/articles/learning-javascript-in-small-bites-part-4/
Sweet libraries
http://jquery.com
http://code.google.com/p/iui/
Strict Mode
Classes
function Building(x,y,z) { this.x = x; this.y = y; this.z = z; } Building.prototype.area = function () { return x * y * z; } var house = Building(20,20,10);