16/10/2006, 12:39
|
| | | Fecha de Ingreso: junio-2004 Ubicación: Acá
Mensajes: 1.166
Antigüedad: 20 años, 4 meses Puntos: 4 | |
Código:
a={as:1,b:333} <- objeto
b=document.createElement("div"); <- objeto
c=window.event <- objeto en IE
x=[1,3,4,5,56] <-- array
y= new Array();
y["asas"]=3214243; <-- array
alert(a instanceof Object);
alert(b instanceof HTMLDivElement); // no anda en IE
alert(x instanceof Array);
alert(y instanceof Array);
|