tsconst u: unknown = 3; const sum = u + 5; // エラー: Object is of type 'unknown'.
tsif (typeof u === 'number') { const sum = u + 5; }