Future Features of JS?!

Rate this content
Bookmark

Curious to know what are some of the potential JS features that are cooking right now?

Yes are at the right place! This talk will be walking you through such features with code samples and some insights from the TC39 meeting notes about them.

This talk has been presented at JSNation 2022, check out the latest edition of this JavaScript Conference.

FAQ

The TC39 process involves different stages for developing new features in JavaScript, ranging from Stage 0 (strawman proposals) to Stage 4 (finished and implemented features).

Import assertions enhance security and clarity by ensuring that the imported modules are of the expected type, preventing security issues and bugs related to incorrect module types.

The 'array.findLast' method allows finding the last element in an array that meets a specified condition, simplifying searches that traditionally required reversing the array first.

The 'Change Array by Copy' proposal introduces methods like 'toReversed' and 'toSorted', which perform operations on arrays without mutating the original array, thus maintaining data integrity.

The 'Array from async' proposal aims to simplify the process of converting an async generator or asynchronous operations into an array, making it easier to handle asynchronous data flows.

The 'findLast' and 'findLastIndex' methods allow for directly finding elements or their indices from the end of the array, eliminating the need to reverse the array first, thus optimizing performance.

JSON modules became a separate proposal to allow for more focused discussion and faster progression through the TC39 process stages, addressing specific needs for handling JSON data in modules.

Hemanth HM
Hemanth HM
28 min
20 Jun, 2022

Comments

Sign in or register to post your comment.

Video Summary and Transcription

Welcome to the future features of JavaScript, including proposals for array operations, throw expressions, records and TPUs, pipeline operators, and more. The talk covers the introduction of type assertions for imported files, non-mutating array operations, and the simplification of error handling. It also explores the concept of immutability with records and TPUs, and the use of the pipeline operator to simplify code. Other proposals include Map.implace, IteratorHelper, slice notation, type annotations, Array UNIQBY, number ranges, and the Function 1 proposal.
Available in Español: ¿Futuras características de JS?!

1. Introduction to JavaScript Proposals

Short description:

Welcome to the future features of JavaScript. We will go through different proposals from stage 0 to stage 3. The TC39 process includes different stages, starting from Stage 0 to Stage 4. Let's dive into and surprise ourselves with some of these proposals, starting with Stage 3. One proposal is about finding values from the end of an array. Another proposal is about finding the last index. The proposal suggests adding convenient methods to the array object. The proposal has been discussed and different names have been suggested. The implementation can be found in the Chromium source.

Hello, JS Nation. Welcome to the future features of JavaScript. In this talk, we will be going through different proposals from stage 0 to stage 3, understand why they exist, what they are trying to solve, and hopefully, they get implemented in all of the JavaScript environments.

I'm Hemant. I'm an Engineering Manager here at PayPal, a TC39 delegate, a Google developer expert for Web and Payments Domain. You can hit me at Newman on Twitter or find me on html.com. The ECMA International has a lot of technical communities, out of which TC39 happens to be the ECMAScript community, which is responsible for the specification that JavaScript implements. The TC39 process includes different stages, starting from Stage 0 to Stage 4, where Stage 4 is finished and implemented in different environments, and Stage 1 is more like a strawman with just a basic idea of what the proposal is. In this talk, we will go from Stage 0 to Stage 3 and see different proposals.

If we look into the current state of how the proposals are, on Stage 0, we have 18 proposals. On Stage 1 we have 91 proposals, and Stage 2 we have 22, and Stage 3 we have 17, and Stage 4 we have 59 proposals. Let's dive into and surprise ourselves with some of these proposals, starting with Stage 3.

Say we have an array of objects and you want to find a particular value from the end of the array. What would you do? You would probably do a reverse on that array and do a find. In this case we're trying to find the values which are not divisible by 2. And in this case we got value as 3, but we had to reverse the array and then do a find. What if we had a convenient method which says, array.findFromLast, array.findLast, here is the condition, give me the element. What if you were to find the last index? You would again do a reverse and do a find.index, and take the array.length and subtract minus 1 from it and subtract that value from whatever we found if the result is matched to find the index. In this case the value was 2. Suppose the condition is not met, where we are looking for number 42. The value should have been minus 1, but it is 4. What if we had a method that said, array.findLastIndex, and when the condition is met it will find the index if it's present, and if not it would give minus 1. Wouldn't it be convenient? Here on the left is a comment from one of the issues in GitHub for this proposal where the idea was to discuss and come up with names. As you can see, some of the names that were popped up in the issue was like findRight, findIndexRight, findLast, findIndexLast, findEnd, findIndexEnd, and so on. Finally we have findLast, and last, findLastIndex as the proposal today. On the right side we can see an implementation from the Chromium source which says fastArray findLast. If you want to open up spec, you could do a one on one mapping to each of those lines in this code to understand how the specification is implemented. For example, on the comment where it says 4, that's point four in the spec which says let k be length minus one, and that's where we have the exact implementation here. That is findLast and findLastIndex. Then we have import assertion.

2. Import Assertion and JSON Modules

Short description:

This proposal introduces a way to assert the type of imported files in JavaScript. It allows for explicit type declarations when importing JSON, JavaScript, or WebAssembly files, providing increased security and clarity in code. Additionally, there are separate proposals for JSON modules and the decoupling of JSON modules from import assertions. These proposals undergo modifications, discussions, and decisions during the proposal phase. It is important to stay updated on the progress of these proposals, and a recommended talk by Julia at GSNation provides insights into how JS modules work from a browser's perspective.

This kind of proposal gives a way to assert the type that we are importing. For example, in this case, we are saying import json from foo.json, assert type json. We are saying okay this is of type json, and if you were to use dynamic imports, you would say import foo.json and say assert type json when you are doing a dynamic import, and if say you have a JavaScript which is kind of exporting a value and you want to export that value from your file, we could say export value from foo.js which is exporting that value and then you are asserting type to be JavaScript.

And finally, you could use type to be WebAssembly and this can also be used in the script tag. And you might be wondering why should I use an assert type? Why do I need this inline thing? Why not just import JSON from foo.json? Well, it happens just relying on the MIME type to figure out whether it's JSON or not causes a security bug. There's a lot of concerns around security on just importing a random file. And then you have to make sure that you're asserting this is of type JSON and if it is something else, apart from JSON, it would throw and say, hey, I don't know because I'm trying to assert this to be a JSON file and it's not, thereby keeping the code more secure and giving us an easy way to express ourselves in line on what type is this in terms of asserting that this is what we are really importing.

Similarly, we have JSON modules, which is very much similar to what we saw previously, you can import JSON as modules and having this assertion type. But you might be wondering why two different proposals? Is it very much similar to what we just saw previously? Well, if you dig into the notes from the meeting, you can notice here that there was a discussion and the decision that was made it said, one of the decisions was that decouple JSON modules, so that makes into stage two, and then progresses to different states, right? This is a common thing that happens during the phase of a proposal, it might get modified, it gets changed, can branch into two different proposals, it can also get discarded and rejected to a lot of reasons. So here we saw that JSON module was part of the import assertion, but became an independent proposal in itself so that it can accelerate quickly towards the finish. Definitely don't miss this talk from Julia, which is part of GSNation this time and she's talking about how JS modules work from a browser's perspective. She's sitting in the 39 delegate of course and as an implementer in Firefox, this talk is a must watch if you want to know more about how JSON modules work.