I have an object X
with a method getY()
returning an object Y
with a method a()
, in typescript. What does it mean an expression like this one:
X.getY()!.a()
I guess the !
operator is used to check against null, but how does it work concretely? Where is defined in the language?
August 6, 2020. TypeScript 3.7 added support for the ?? operator, which is known as the nullish coalescing operator. We can use this operator to provide a fallback value for a value that might be null or undefined .
What is the TypeScript exclamation mark? The non-null assertion operator tells the TypeScript compiler that a value typed as optional cannot be null or undefined . For example, if we define a variable as possibly a string or undefined, the !
Non-null assertion operatorproduces a value of the type of x with null and undefined excluded. Similar to type assertions of the forms <T>x and x as T , the ! non-null assertion operator is simply removed in the emitted JavaScript code. // Compiled with --strictNullChecks.
The Angular non-null assertion operator causes the TypeScript type checker to suspend strict null and undefined checks for a specific property expression. For example, you can assert that item properties are also defined. Often, you want to make sure that any property bindings aren't null or undefined .
It's called the "Non-null assertion operator" and it tells the compiler that x.getY()
is not null.
It's a new typescript 2.0 feature and you can read about it in the what's new page, here's what it says:
A new ! post-fix expression operator may be used to assert that its operand is non-null and non-undefined in contexts where the type checker is unable to conclude that fact. Specifically, the operation x! produces a value of the type of x with null and undefined excluded. Similar to type assertions of the forms x and x as T, the ! non-null assertion operator is simply removed in the emitted JavaScript code.
// Compiled with --strictNullChecks function validateEntity(e?: Entity) { // Throw exception if e is null or invalid entity } function processEntity(e?: Entity) { validateEntity(e); let s = e!.name; // Assert that e is non-null and access name }
There's an issue for documenting this feature: Document non-null assertion operator (!)
null | undefined
Here is a trivial example of what it does:
let nullable1: null | number; let nullable2: undefined | string; let foo = nullable1! // type foo: number let fooz = nullable2! // type fooz: string
It basically removes null | undefined
from the type
When do I use this?
Typescript is already pretty good at inferring types for example using typeguards:
let nullable: null | number | undefined; if (nullable) { const foo = nullable; // ts can infer that foo: number, since if statements checks this }
However sometimes we are in a scenario which looks like the following:
type Nullable = null | number | undefined; let nullable: Nullable; validate(nullable); // Here we say to ts compiler: // I, the programmer have checked this and foo is not null or undefined const foo = nullable!; // foo: number function validate(arg: Nullable) { // normally usually more complex validation logic // but now for an example if (!arg) { throw Error('validation failed') } }
My personal advice is to try to avoid this operator whenever possible. Let the compiler do the job of statically checking your code. However there are scenarios especially with vendor code where using this operator is unavoidable.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With