Definition: The new statement defines creates a new object. This object will continue to exist until the page is unloaded or it is deleted using the delete statement. New is a reserved word and cannot be used for anything other than creating a new object.
Examples:
var myobject = new Object;

