Saturday 21 March 2015

Objects and Types in Javascript

4 types of Object
Intrinsic objects   - Date ,String .number,.....
Host Objects - Window ,document
Creating Objects -  var obj =new Object();
Activex Object

The type of all objects created with a custom constructor is object. There are only six types in JavaScript:objectfunctionstringnumberboolean, and undefined.