News

TypeScript 2.8 Officially Released: Hello Conditional Types

Less than two weeks after publishing the TypeScript 2.8 Release Candidate, Microsoft has officially launched it into general availability.

TypeScript is an open source language backed by Microsoft that provides optional static typing while remaining a strict syntactical superset of JavaScript.

The big new feature in TypeScript 2.8 is the support for conditional types, which borrows from JavaScript's familiar conditional -- or ternary operator, "?" -- that returns a different expression depending on whether a preceding Boolean conditional expression evaluates to true or false, acting as shorthand for the if ... then ... construct.

In TypeScript 2.8 the new functionality involving the ternary operator opens up all kinds of possibilities, Microsoft's Daniel Rosenwasser explained:

Conditional types are a new construct in TypeScript that allow us to choose types based on other types. They take the form
A extends B ? C : D
where A, B, C and D are all types. You should read that as "when the type A is assignable to B, then this type is C; otherwise, it's D." If you've used conditional syntax in JavaScript, this will feel familiar to you.

Although that's the simplest example, the new feature can be put to many more complicated use cases, including working with generics.

"While conditional types can be a little intimidating at first, we believe they'll bring a ton of flexibility for moments when you need to push the type system a little further to get accurate types," Rosenwasser said.

The new conditional type functionality stems from a pull request for Microsoft's open source programming language announced by Technical Fellow Anders Hejlsberg on Jan. 20. That PR goes into all of the nitty-gritty details of the new feature, also explained further in Rosenwasser's post.

Speaking of which, Rosenwasser also summarized the following features in TypeScript 2.8:

"We hope that TypeScript 2.8 pushes the envelope further to provide a type system that can truly represent the nature of JavaScript as a language," Rosenwasser concluded. "With that, we believe we can provide you with an experience that continues to make you more productive and happier as you code."

TypeScript has apparently already been making its users happier, as it was named a popular programming language in Stack Overflow's big developer survey and the most recent RedMonk language popularity report -- though some developers have debated its perceived "bloat."

More information can be found in the list of breaking changes and the language's roadmap, which shows what's coming next, including generic JSX elements.

About the Author

David Ramel is an editor and writer for Converge360.

comments powered by Disqus

Featured

  • AI for GitHub Collaboration? Maybe Not So Much

    No doubt GitHub Copilot has been a boon for developers, but AI might not be the best tool for collaboration, according to developers weighing in on a recent social media post from the GitHub team.

  • Visual Studio 2022 Getting VS Code 'Command Palette' Equivalent

    As any Visual Studio Code user knows, the editor's command palette is a powerful tool for getting things done quickly, without having to navigate through menus and dialogs. Now, we learn how an equivalent is coming for Microsoft's flagship Visual Studio IDE, invoked by the same familiar Ctrl+Shift+P keyboard shortcut.

  • .NET 9 Preview 3: 'I've Been Waiting 9 Years for This API!'

    Microsoft's third preview of .NET 9 sees a lot of minor tweaks and fixes with no earth-shaking new functionality, but little things can be important to individual developers.

  • Data Anomaly Detection Using a Neural Autoencoder with C#

    Dr. James McCaffrey of Microsoft Research tackles the process of examining a set of source data to find data items that are different in some way from the majority of the source items.

  • What's New for Python, Java in Visual Studio Code

    Microsoft announced March 2024 updates to its Python and Java extensions for Visual Studio Code, the open source-based, cross-platform code editor that has repeatedly been named the No. 1 tool in major development surveys.

Subscribe on YouTube