funciones functions javaScript

por | 15 abril, 2007

 /* FUNCTIONS */
 
 function hola_usuario()
 {
  document.write(«Hola que tal <br>») 
 }
 
 function raiz(x)
 {
 
  return x * x ;
 
 }
 
 
 hola_usuario();
   
 numero=prompt(«Ingresa un numero», 0);
 document.write(raiz(numero));