エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Thread.js
a simple. var thread = new Thread(function(){ return "hello Thread.js"; }); thread.once().done(fu... a simple. var thread = new Thread(function(){ return "hello Thread.js"; }); thread.once().done(function(d){ console.log(d); // -> hello Thread.js }); with arguments. var thread = new Thread(function(a, b){ return a + b; }); thread.once(1, 2).done(function(d){ console.log(d); // -> 3 }); with progress. var thread = new Thread(function(){ notify("progress"); return "hello Thread.js"; }); thread.once
2017/12/01 リンク