<script type="text/javascript">
function sumar(){
var suma=0;
for (i = 0; i < arguments.length; i++) {
suma+=parseInt(arguments[i]);
}
return suma;
}
</script>
En este caso hemos usado la variable "arguments" una variable especial de Javascript que todas la funciones soportan y que nos permite acceder a la colección de argumentos.
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.