Prototype-number-times

提供:Dev Guides
移動先:案内検索

プロトタイプ-times()メソッド

このメソッドは、コールバック関数を0からN回呼び出します。 コールバック関数は、0から数字までの単一の引数で排他的に呼び出されます。

構文

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>

出力