Copyright © tutorialspoint.com
This method calls callback function N number of times starting with 0. The callback function is invoked with a single argument, ranging from 0 to the number, exclusive.
N.times(Callback Function); |
<html> <head> <title>Prototype examples</title> <script type="text/javascript" src="/javascript/prototype.js"> </script> <script> function showResult(){ var s = ''; (5).times(function(n) { s += n; }); alert("Encapsulated Number : " + s ); } </script> </head> <body> <p>Click the button to see the result.</p> <br /> <br /> <input type="button" value="Result" onclick="showResult();"/> </body> </html> |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com