エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント2件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Multiple return values in ECMAScript 6
If you combine the features “property value shorthand” and “destructuring”, ECMAScript 6 gives yo... If you combine the features “property value shorthand” and “destructuring”, ECMAScript 6 gives you an elegant way to handle multiple return values. This blog post explains why that is useful and how it works. Destructuring # Destructuring is an ECMAScript 6 feature which lets you use patterns to extract values from an object: let obj = { first: 'Jane', last: 'Doe' }; let { first: f, last: l } = o
2014/06/21 リンク