News

TypeScript 3.7 Beta Is 'Feature-Complete'

TypeScript 3.7, with a new Beta, is now feature complete, with the dev team polishing it up in advance of the official release coming early next month.

In announcing the beta on Oct. 1, program manager Daniel Rosenwasser highlighted two features of special note in that they were highly requested by developers, and championed by the dev team for inclusion in TC39, a standardization effort for the vendor-neutral ECMAScript programming language, better known as JavaScript (which TypeScript enhances with features such as optional typing).

One of those is Optional Chaining, described by Rosenwasser as "one of the most highly-demanded ECMAScript features yet," which the dev team is heavily involved in progressing through the TC39 process.

"So what is optional chaining?" he said. "Well at its core, optional chaining lets us write code where we can immediately stop running some expressions if we run into a null or undefined. The star of the show in optional chaining is the new ?. operator for optional property accesses."

Closely related to that is the second upcoming ECMAScript feature Rosenwasser highlighted, also being championed by the dev team: the nullish coalescing operator.

"You can think of this feature -- the ?? operator -- as a way to “fall back” to a default value when dealing with null or undefined," Rosenwasser said.

So it can basically shorten up code like:

let x = (foo !== null && foo !== undefined) ?
    foo :
    bar();

to

let x = foo ?? bar();

Other features in the v3.7 beta highlighted by Rosenwasser include:

  • Assertion functions
  • Better support for never-returning functions
  • (More) recursive type aliases
  • --declaration and --allowJs
  • Build-free editing with project references
  • Uncalled function checks
  • // @ts-nocheck in TypeScript files
  • Semicolon formatter option

Once again, however, the Investigate error messages in haiku or iambic pentameter proposal that was added to the TypeScript roadmap in May 2018 was not mentioned in the v3.7 beta announcement post.

About the Author

David Ramel is an editor and writer at Converge 360.

comments powered by Disqus

Featured

  • VS Code v1.99 Is All About Copilot Chat AI, Including Agent Mode

    Agent Mode provides an autonomous editing experience where Copilot plans and executes tasks to fulfill requests. It determines relevant files, applies code changes, suggests terminal commands, and iterates to resolve issues, all while keeping users in control to review and confirm actions.

  • Windows Community Toolkit v8.2 Adds Native AOT Support

    Microsoft shipped Windows Community Toolkit v8.2, an incremental update to the open-source collection of helper functions and other resources designed to simplify the development of Windows applications. The main new feature is support for native ahead-of-time (AOT) compilation.

  • New 'Visual Studio Hub' 1-Stop-Shop for GitHub Copilot Resources, More

    Unsurprisingly, GitHub Copilot resources are front-and-center in Microsoft's new Visual Studio Hub, a one-stop-shop for all things concerning your favorite IDE.

  • Mastering Blazor Authentication and Authorization

    At the Visual Studio Live! @ Microsoft HQ developer conference set for August, Rockford Lhotka will explain the ins and outs of authentication across Blazor Server, WebAssembly, and .NET MAUI Hybrid apps, and show how to use identity and claims to customize application behavior through fine-grained authorization.

  • Linear Support Vector Regression from Scratch Using C# with Evolutionary Training

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the linear support vector regression (linear SVR) technique, where the goal is to predict a single numeric value. A linear SVR model uses an unusual error/loss function and cannot be trained using standard simple techniques, and so evolutionary optimization training is used.

Subscribe on YouTube