## β Suggestion Let us declare local variables as optional ## π» Use Cases `const x: Type? = y;` `let x: Type?;` and this would translate to: `const x: Type | undefined = y;` `let x: Type | undefined = undefined;` ## π Search Terms optional variable