/blog
July 22, 2022

Type Annotations in JavaScript

tutorials, javascript, typescript, standards

Static Typing is the number one feature missing in JavaScript, according to 16K developers participating in the State of JavaScript survey 2022. There are so many opinions and conversations around it, that TC39, the committee which standardizes the JavaScript language launched a new Stage 0 proposal to enable JavaScript developers to add type annotations to their JavaScript code.

JavaScript Soft Typing Support

Let’s understand what is happening and why this could have a major impact on how we write JavaScript.

A Little Bit of History: TypeScript, JavaScript, and Concepts

When JavaScript was first released 27 years ago, it was designed to be a dynamic language or weakly typed language, meaning that developers can't specify the types of information that will be stored in a variable in advance. JavaScript assigns the type of a variable based on the information assigned to it. (e.g. arrays, strings, object, etc). The opposite is Strongly typed language, where specifying types in advance is enforced by the compiler, such as Java, C# and Rust.

Having a weakly typed language is a bittersweet experience.

The sweet part is because it gives you a lot of flexibility and less developer effort as the compiler performs certain kinds of type conversions. The bitter part is because fewer errors are caught at compile time, leaving many bugs to be caught at runtime.

Weakly typed languages allows to things like this: 1 + “1” = 11

And errors like this: x does not have a method 'foo'

As well as other similar errors and weird stuff that could be preventable by adding type syntax. That’s why TypeScript was invented.

JavaScript + Types = TypeScript

TypeScript is a superset of JavaScript, meaning that you can completely write valid JavaScript without using any extra features Typescript offers. You can build on JavaScript by adding syntax for type declarations, classes, and other features with type-checking.

In other words, Typescript is a type-checking language that doesn’t change how JavaScript is interpreted by the browser.

TypeScript was first released in 2012 and “is a strongly typed programming language that builds on JavaScript, giving you better tooling at any scale”, is now the seventh most popular language among developers according to Stack Overflow survey 2021, and fourth according to The State of the Octoverse.

JavaScript Soft Typing Support

Its use and adoption have been extensive, exponential, and explosive! But, it really started to take off in 2017. Its popularity has been growing because, by providing checking syntax on top of JavaScript, TypeScript allows developers to type check their code, helping find bugs and improve documentation of large JavaScript code bases.

Some argue that TypeScript faces the same fate as Coffeescript, which includes improvements for the JavaScript Language such as for..of loops. Those improvements were later included in the JavaScript language itself in ES6, making CoffeScript irrelevant. TypeScript, as a “superset” of JS, could become irrelevant if JavaScript itself adopts all the TypeScript improvements.

Because JavaScript is the lingua franca of the web, a small change can potentially break millions of sites and applications. Luckily, TC39 members always consider features that are completely backward-compatible.

TypeScript is so compatible with JavaScript that if you change a JavaScript file extension for .ts, boom! You have a valid TypeScript file! And, the extra type syntax is optional. You only add it if it brings benefits to you, no wonder why is growing in popularity.

JavaScript Soft Typing Support

Deep Dive into the Proposal: Type Declarations in JavaScript

The main purpose of the proposal is to “Reserve a space for static type syntax inside the ECMAScript language. JavaScript engines would treat type syntax as comments”. TC39 Proposal that means:

Everything in this proposal has no runtime behavior and would be ignored by a JavaScript runtime.

Type Annotations in Variables and Functions

Using type annotations, a developer can explicitly state the type of variable or expression (if it’s a string, type, boolean…). They start with colon : followed by the type. Check the following example:

let x: string;

x = "Using annotations";

If x is assigned to a number x = 10, TypeScript will throw an error. However, the JavaScript engine follows the TC39 proposal. The result won’t throw an error, because annotations are equivalent to comments. They don’t change the semantics of the program.

So what’s the difference?

Well, because a picture is worth a thousand words, check this out:

JavaScript Soft Typing Support

<center><figcaption>[Before and after type annotations](https://tc39.es/proposal-type-annotations/)<figcaption></center>

This means that when you write JavaScript with type annotations, it won’t throw an error anymore. Even if you state that x is a string and you assigned it to a number; you won’t see a comment as such, instead, it will remain as a comment inside the javascript engine, the runtime code will be interpreted like this:

let x: string;

x = "Using annotations";

Currently, a “plugin” is necessary in some tools if you want TypeScript to work. But with this proposal, these tools could support type annotations by default. Full TypeScript support, could remain an opt-in mode.

Basically, the transpilation from TypeScript to JavaScript is avoided. If you create a TypeScript program, it should run without transpiling.

You can have annotations placed on parameters inside a function, to specify the types that function accepts, for example:

function equals(x: number, y: number): boolean {
    return x === y;
}

In this case, only numbers are accepted as parameters, and the return value of the function will be a boolean.

Type Declarations: Type Alias

Type aliasing consists of giving one type a new name; it doesn’t create a new type. It can declare a name for a broader set of types. Aliasing a primitive isn’t very practical as it’s easy using primitive types, but one of the best usages is for documentation purposes.

Example:

type importantNumber = number;

Will all of TypeScript be supported by this proposal?

Short answer: no. Only the main types that are shown in the section below. For example enums, namespaces and class parameter properties are unlikely to be supported. In addition, specifying type arguments at function call-sites may require a slightly different syntax

Kinds of Types

The allowed types in this proposal are:

  • Simple "identifier" style: number, Foo, string
  • Adding ?: number?, ?number, Foo?
  • Adding parentheses after an identifier: .string[], Foo<T>, Foo<T extends ReturnType<Bar>>
  • Starting with parentheses: {x: number, y: number}, {|x: number, y: number|}, (() => number)

There are other types into consideration, but for now, the types above will be supported.

Parameter Optionality

When declaring parameters for a function in JavaScript, all the parameters are required and if the client has no value for the parameter, they can pass the “null” value instead. If the client doesn’t pass any value (not even null) the parameters will be assigned to undefined which can be a source of errors. The parameter optionality means that the parameters for that function are not required, they are optional.

Parameter Optionality Syntax

You just need to add the question mark “?” between the parameter name and the colon “:” as shown in the example below.

function myFunction(param1: number, param2?: number) {
}

In this case, param2 is optional, param1 is required.

Generics

Generics is one of the main tools in the toolbox for creating reusable components in languages such as C# or Java, this means, being able to create components that work with multiple types instead of just one. This could be useful in the way the user can use their own types.

If you are familiar with TypeScript, this is where the famous any type comes into play.

function myFunction(arg: any): any {
 return arg;
}

Any type is the most generic one. The example above means that the function allows specifying arbitrary properties, even ones that don’t exist. But, we are losing the information about the type when the function returns. For example, if we pass a number, the only information we have is that it is any type, not a number.

There is a way of capturing the type of the argument that describes what’s being returned: using the type variable that works on types rather than values, giving us type safety.

What’s next?

For this proposal to be fully integrated to JavaScript, it needs to pass four stages. Right now is in the first stage: accepted for consideration.

Here are the stages for the TC39 process:

For more information on how the process works, visit the official documentation.

Some argue that Type Annotations are the future, and this proposal will likely be accepted since it is one of the most (or the most) requested features in JavaScript.

One of the co-autors of this proposal Gil Tayar, says that if this proposal lands:

  1. There will be no more transpilations of most of TS and Flow
  • With real browser ESM, removing all tooling during development will be possible
  1. Code will still be checked by third-party checkers (TS and Flow)
  2. Slow converge of incompatible TS/FLow to the new syntax
  3. Tooling will become much simpler
  4. Other type systems will be experimented with, but it will take time, probably years, but it will be worth the wait.

Before you go

Want more developer articles like this? Follow @statefulhq on Twitter to be alerted when Stateful publishes developer content.

Relevant links

Before you go...

To stay updated with our latest content, please subscribe to our email updates or follow us on Twitter at @runmedev! Also, check out Runme (interactive runbooks for VS Code), and Runme Cloud.

Let us know what you think. Bye for now! 👋