Funciones: objeto arguments

PROBLEMA

  1. Confeccionar una función que obtenga y retorne el mayor valor de una lista de enteros que le pasamos como parámetros.
Solución
Problema 1.


<html>
<head>
</head>
<body>

<script type="text/javascript">

  function mayor()
  {
    var may=arguments[0];
    var f;
    for(f=1;f<arguments.length;f++)
    {
      if (arguments[f]>may)
      {
        may=arguments[f];
      }
    }
    return may;
  }

  document.write(mayor(7,22,4,66,3,22,55));

</script>

</body>
</html>


Retornar al menu