Meet JavaScript…

By | | JavaScript & CSS

7

Simon just published the slides from a recent talk he gave – A (Re)-Introduction to JavaScript plus his preparatory notes (PDF). Basically a programmers introduction to Javascript and excellent to go with it- closures unmystified.

Written By:

Harry Fuecks

Harry has been working in corporate IT since 1994, with everything from start-ups to Fortune 100 companies. Outside of office hours he runs phpPatterns: a site dedicated to software design with PHP that aims to raise standards of PHP development. He also maintains Dynamically Typed: SitePoint's PHP blog.

 

{ 5 comments }

Matthias Miller March 18, 2006 at 1:50 am

Let’s try this again. The “arguments” should have been “arr”, such as:

function avgArray(arr) {
var sum = 0;
for (var i = 0, j = arr.length; i < j; i++) {
sum += arr[i];
}
return sum / arr.length;
}

Matthias Miller March 18, 2006 at 1:48 am

Just noticed a minor error on http://simon.incutio.com/slides/2006/etech/javascript/js-tutorial.061.html. This should be:

function avgArray(arr) {
var sum = 0;
for (var i = 0, j = arr.length; i arr[i];
}
return sum / arr.length;
}

Bobster March 8, 2006 at 5:37 am

SitePoint Blogs » Zend Framework Tutorial Says:
March 7th, 2006 at 11:09 am

[…] Blog Post Blogs » PHP » Zend Framework Tutorial « Meet JavaScript… […]

Good point there, sir.

Skunk March 7, 2006 at 8:35 pm

Thanks for the post :) I’ve posted better quality slides to Flickr, and I’ve converted the notes to HTML (with fragment links for individual sections).

Sojan80 March 7, 2006 at 1:19 pm

Wow now that is a lecture I would have loved to have been able to attend. Thnks for the links!.

Comments on this entry are closed.

{ 2 trackbacks }