> For the complete documentation index, see [llms.txt](https://mm.ricky.moe/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mm.ricky.moe/javascript/typescript/shi-yong/fu-zhi-duan-yan.md).

# 赋值断言

变量后追加`!` 表示变量已经确定被赋值了

```typescript
let x: number;
initialize();
console.log(x! + x!); //ok

function initialize() {
    x = 10;
}
```
