HOME > > > >

after

_.after(count, function)

関数が count 回実行されたあとはfunctionが実行される

count
int
function
function

サンプル

実行結果

実行

Javascript

  1. debug1 = new Debug('#code1-dump');
  2.  
  3. const func_after = _.after(3, () => {
  4.     debug1.dump('3回クリックしたよ');
  5. });
  6.  
  7. document.getElementById('code1-execute').addEventListener('click', (e) => {
  8.     func_after();
  9. });
  10.  

HTML

  1. <span class="btn btn-execute" id="code1-execute">実行</span>
  2. <div id="code1-dump"></div>
参照サイト