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

  • Microsoft Revamps Fledgling AutoGen Framework for Agentic AI

    Only at v0.4, Microsoft's AutoGen framework for agentic AI -- the hottest new trend in AI development -- has already undergone a complete revamp, going to an asynchronous, event-driven architecture.

  • IDE Irony: Coding Errors Cause 'Critical' Vulnerability in Visual Studio

    In a larger-than-normal Patch Tuesday, Microsoft warned of a "critical" vulnerability in Visual Studio that should be fixed immediately if automatic patching isn't enabled, ironically caused by coding errors.

  • Building Blazor Applications

    A trio of Blazor experts will conduct a full-day workshop for devs to learn everything about the tech a a March developer conference in Las Vegas keynoted by Microsoft execs and featuring many Microsoft devs.

  • Gradient Boosting Regression Using C#

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the gradient boosting regression technique, where the goal is to predict a single numeric value. Compared to existing library implementations of gradient boosting regression, a from-scratch implementation allows much easier customization and integration with other .NET systems.

  • Microsoft Execs to Tackle AI and Cloud in Dev Conference Keynotes

    AI unsurprisingly is all over keynotes that Microsoft execs will helm to kick off the Visual Studio Live! developer conference in Las Vegas, March 10-14, which the company described as "a must-attend event."

Subscribe on YouTube