<html>
<head>
<title>funciones 4</title>
<script type="text/javascript">
function cuadrado(numero){
return numero*numero;
}
</script>
</head>
<body>
<script type="text/javascript">
var i=0;
i=parseInt(prompt('Dame un número',''));
{
document.write("la función me retorna ", cuadrado(i),"</br>");
}
</script>
</body>
</html>
No hay comentarios:
Publicar un comentario