Código Javascript:
Ver original
<html> <head> <script language="javascript"> function animales(nombre) { this.nombre = nombre; this.color = 'negro'; this.tamanno = 275; this.altura = 43; } </script> </head> <body> <form> </form> <script> var animal = new animales("Pinky"); alert("La mascota " + animal.nombre + " es de color " + animal.color); </script> </body> </html>
Podría crear las clases gatos y perros pero usando la clase anterior.
eso porfavor.
clase gatos
Código Javascript:
Ver original
<script language="javascript"> function gatos(nombre) { this.nombre = nombre; this.tipo_gatos = 'generico'; } </script>
clase perros
Código Javascript:
Ver original
<script language="javascript"> function perros(nombre) { this.nombre = nombre; this.tipo_perro = 'generico'; this.color_perro = 'generico'; } </script>