JavaScript Objects
==================

Posted on Thursday, 6th June 2013 by admin	
An object is a package or collection of data. This data may be simple, such as strings and numbers, or it may be more complex. In particular, the object can also contain other objects.

JavaScript is very much committed to objects. Everything important in JavaScript is defined in or as an object. Arrays are objects. Functions are objects. Even if you have data which is not in an object it is. The default object is the Global object, which in web browsers is identified with the window object.

