typescript "variable!: type" notation code example
Example 1: typescript "variable!: type" notation
// Writing ! after any expression is effectively a type assertion
// that the value isn’t null or undefined
function liveDangerously(x?: number | null) { // No error console.log(x!.toFixed());}Try
Example 2: typescript "variable?: type" notation
// the "last" property is optional and can be undefined
function printName(obj: { first: string; last?: string }) { // ...}// Both OKprintName({ first: "Bob" });printName({ first: "Alice", last: "Alisson" });Try