Ver Mensaje Individual
  #5 (permalink)  
Antiguo 13/05/2013, 20:32
Avatar de afal3d
afal3d
 
Fecha de Ingreso: octubre-2012
Mensajes: 24
Antigüedad: 11 años, 7 meses
Puntos: 0
Respuesta: Arreglos heterogéneos

Cita:
Iniciado por ggomez91 Ver Mensaje
Hum... No sé si no entendí pero suena muy sencillo

Código Javascript:
Ver original
  1. var array = [];
  2. array.push(123);
  3. array.push(true);
  4. array.push("queso");
  5. array.push({"tipoQueso": "manchego", edad: 10})
Gracias...me sirvió mucho tu explicación para entender el ejercicio.