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.
Syntax:
N.times(Callback Function);
Return Value:
Encapsulated Number.
Example:
<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>