Javascript and name spaces

satya - Saturday, August 01, 2009 10:45:44 PM

javascript name space approach

Search for: javascript name space approach

satya - Saturday, August 01, 2009 10:48:13 PM

Just an initial read on the subject

Just an initial read on the subject

satya - Saturday, August 01, 2009 10:50:16 PM

Examples of javascript namespaces

Search for: Examples of javascript namespaces

satya - Saturday, August 01, 2009 10:56:07 PM

Looks like a lot of discussion on the subject

Looks like a lot of discussion on the subject

satya - Saturday, August 01, 2009 11:00:27 PM

javascript colon return

Search for: javascript colon return

Interesting what you will find :)

satya - Saturday, August 01, 2009 11:02:31 PM

A quick overview of the language from Douglas Crockford

A quick overview of the language from Douglas Crockford

satya - Saturday, August 01, 2009 11:05:19 PM

Apparently these two are identical


function name(argumentlist) block 

and

var name = function name (argumentlist) block ;

satya - Saturday, August 01, 2009 11:07:48 PM

In Javascript, like a String, a function is an object!!

In Javascript, like a String, a function is an object!!

satya - Saturday, August 01, 2009 11:10:38 PM

Functions can have inner functions. this is called a closure

Functions can have inner functions. this is called a closure

satya - Saturday, August 01, 2009 11:14:13 PM

what on earth is this syntax


var DED = function() {
	return {
		method_1 : function() {
			// do stuff here
		},
		method_2 : function() {
			// do stuff here
		}
	};
}();

satya - Saturday, August 01, 2009 11:16:47 PM

what is the syntax for declaring an empty javascript object

what is the syntax for declaring an empty javascript object

Search for: what is the syntax for declaring an empty javascript object

satya - Saturday, August 01, 2009 11:29:21 PM

Here is an annonymous function


function Employee() {
  var registerA = "Initial Value";
  this.setRegisterA = function(param) { registerA = param };
  this.dept = "HR";
  this.manager = "John Johnson";
}

satya - Saturday, August 01, 2009 11:38:12 PM

javascript initialization variables

Search for: javascript initialization variables

satya - Saturday, August 01, 2009 11:44:18 PM

Javascript array initialization equivalence

Search for: Javascript array initialization equivalence

satya - Saturday, August 01, 2009 11:56:23 PM

Javascript associative array initialization equivalence

Search for: Javascript associative array initialization equivalence

satya - Sunday, August 02, 2009 12:01:38 AM

An interesting detour: javascript, lazlo, associative arrays

An interesting detour: javascript, lazlo, associative arrays