Meet JavaScript…

By | | JavaScript

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.

The Ultimate JavaScript Bundle: 2 books + 1 course

Buy now $39 Normally $117 - save 66%

Or get access to all SitePoint's Premium Content with a Learnable membership

{ 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 }