Quick Table of Contents

  1. typeof
  2. Yahoo UI (yui)
  3. Links

Javascript

Browser side scripting language.

1. typeof

'typeof' can be used to find the datatype of a particular variable. e.g. if you run:

var i = "12";
var iType = typeof i;
var j = 12;
var jType = typeof j;
alert("iType: " + iType);
alert("jType: " + jType);

You will get the following 2 alerts:

iType: string
jType: number

2. Yahoo UI (yui)

We've recently begun using the yui toolkit to help with some design and coding of front end user interfaces. Its very neat and relatively easy to setup. The official site is at http://developer.yahoo.com/yui/

More Articles (showing 6 below)
2011-05-18
2007-01-14
2006-12-31
2006-08-27
2005-12-20