-
-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ECMAScript 2023の対応 #1658
Comments
proposal-array-find-from-lastlastIndexOfがあるので、findLastIndexの対応を追加するのが自然そう https://jsprimer.net/basic/array/#indexof 最後に追加する感じかな。 |
Hashbang GrammarNode CLIのユースケースはCLIの配布までやってないので、hashbangが出てこない。 https://jsprimer.net/basic/comments/ に1行コメントの亜種として足すのはありそうだけど、あんまり強い理由ないかも。 HTML-likeコメントみたいに可能なら追加するぐらいかな。 |
Symbol as a Key仕組み的には結構面白いことになってる。
に意味的な違いが結構出てる。 対応的には、weakの話でキーに指定できるものへsymbolが追加されたことだけど、
Setのここだけ修正が入りそう |
Change Array by copyこれは対応しないといけない。
配列 · JavaScript Primer #jsprimer 方向としては
|
ES2023がリリースされるのは 27.06.2023 - 28.06.2023の予定 ✅は全てのブラウザが対応してるかどうか(2023-06-30) #!test
// #!が1行コメントとして扱われるように仕様化された const sequence = [1, 2, 3];
sequence.toReversed(); // => [3, 2, 1]
sequence; // => [1, 2, 3]
const outOfOrder = new Uint8Array([3, 1, 2]);
outOfOrder.toSorted(); // => Uint8Array [1, 2, 3]
outOfOrder; // => Uint8Array [3, 1, 2]
const correctionNeeded = [1, 1, 3];
correctionNeeded.with(1, 2); // => [1, 2, 3]
correctionNeeded; // => [1, 1, 3] const array = [{ value: 1 }, { value: 2 }, { value: 3 }, { value: 4 }];
array.findLastIndex(n => n.value % 2 === 1); // => 2
array.findLast(n => n.value % 2 === 1); // => { value: 3 } const map = new WeakMap();
const s = Symbol("desc");
map.set(s, {})
map.get(s); // => {} |
Hashbang Grammar コメント · JavaScript Primer #jsprimerに足すかはなんか微妙。 あとはリリースノートとかを書く |
|
ECMAScript 2023対応のmeta issueです。
proposals/finished-proposals.md at master · tc39/proposals
やりかた
book.js
を更新スケジュール
検討リスト
過去
The text was updated successfully, but these errors were encountered: