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 at Converge 360.

comments powered by Disqus

Featured

  • Hands On: New VS Code Insiders Build Creates Web Page from Image in Seconds

    New Vision support with GitHub Copilot in the latest Visual Studio Code Insiders build takes a user-supplied mockup image and creates a web page from it in seconds, handling all the HTML and CSS.

  • Naive Bayes Regression Using C#

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the naive Bayes regression technique, where the goal is to predict a single numeric value. Compared to other machine learning regression techniques, naive Bayes regression is usually less accurate, but is simple, easy to implement and customize, works on both large and small datasets, is highly interpretable, and doesn't require tuning any hyperparameters.

  • VS Code Copilot Previews New GPT-4o AI Code Completion Model

    The 4o upgrade includes additional training on more than 275,000 high-quality public repositories in over 30 popular programming languages, said Microsoft-owned GitHub, which created the original "AI pair programmer" years ago.

  • Microsoft's Rust Embrace Continues with Azure SDK Beta

    "Rust's strong type system and ownership model help prevent common programming errors such as null pointer dereferencing and buffer overflows, leading to more secure and stable code."

  • Xcode IDE from Microsoft Archrival Apple Gets Copilot AI

    Just after expanding the reach of its Copilot AI coding assistant to the open-source Eclipse IDE, Microsoft showcased how it's going even further, providing details about a preview version for the Xcode IDE from archrival Apple.

Subscribe on YouTube

Upcoming Training Events