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

  • Low-Coding in the Age of AI: Dataverse Embraces Copilot, Claude and Cursor

    Microsoft is extending Dataverse into coding-agent marketplaces while expanding its MCP tools, certification program and governance controls.

  • Visual Studio Takes Aim at Copilot Billing Shock

    Beyond Copilot usage visibility, the June update delivers several other enhancements centered on AI-assisted development, security and quality-of-life improvements. Here's a quick rundown of the remaining additions announced by Microsoft.

  • Claude AI Gets Yet Another Boost in VS Code 1.128

    The July 8, 2026, Visual Studio Code update expands agent workflows, chat attachments, browser-tab controls, OS-level shortcuts and enterprise telemetry management.

  • TypeScript 7 Arrives to Rock VS Code with Go-Powered Speed

    Microsoft says TypeScript 7, announced July 8, brings native Go performance to VS Code, Visual Studio and other editors.

Subscribe on YouTube