エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
GitHub - tc39/proposal-extractors: Extractors for ECMAScript
// binding patterns const Foo(y) = x; // instance-array destructuring const Foo([y]) = x; // nest... // binding patterns const Foo(y) = x; // instance-array destructuring const Foo([y]) = x; // nested array destructuring const Foo({y}) = x; // nested object destructuring const [Foo(y)] = x; // nesting const { z: Foo(y) } = x; // .. const Foo(Bar(y)) = x; // .. const X.Foo(y) = x; // qualified names (i.e., a.b.c) // assignment patterns Foo(y) = x; // instance-array destructuring Foo([y]) = x; // n
2024/04/18 リンク