We’re going to be discussing efficient JavaScript in some upcoming training sessions, and I wanted to get this code snippet out for discussion. Commonly, developers will process an array of values, calling some pre-defined function with this idion: var i=values.length;…
Author: Christopher Pryce
Toying With the HTML5 File System API | Nettuts+
An outstanding introduction to the HTML 5 File System API, from the folks at NetTuts+ Toying With the HTML5 File System API Ivaylo Gerchev on Apr 11th 201 HTML5 provides us with a whole crop of new possibilities, such as drawing…
Getting Cozy With Underscore.js | Nettuts+
NetTuts+ has posted an new tutorial covering Underscore.js Getting Cozy With Underscore.js Siddharth on Mar 31st 2012 As JavaScript is slowly moving out of the browser, several tools have emerged that significantly improve JavaScript’s robustness. One such tool is called…
Responsive Design: Off Canvas
Jason Weaver has posted an excellent discussion of a design pattern for responsive design that he labels “Off Canvas”. Inspired by the observations of Luke Wroblewski, this Off Canvas layout demo has 3 panels that display differently depending on the…
Classical Inheritance in JavaScript
Notes for an upcoming discussion. With some work, JavaScript can be used in an Object-Oriented design pattern similar to Java or C++. This can be a good thing, with programmers who are familiar with these languages moving to JavaScript for…