变量后追加! 表示变量已经确定被赋值了
!
let x: number; initialize(); console.log(x! + x!); //ok function initialize() { x = 10; }
最后更新于4年前