Giriş
Açıklaması şöyle
ÖrnekType Unions allow us to define a new type which represents any one of a set of possible types.
Şöyle yaparız
Kullanmak için şöyle yaparız.type Primitive =| string| number| boolean;let x: Primitive;
x = 'Hello'; x = 123; x = false; x = new Date(); // Compiler ErrorDeğişkenin tipini anlamak için şöyle yaparız.
if (typeof x === 'number') { console.log(x.toFixed(2)); // 'x' can safely use 'number' operations }
Hiç yorum yok:
Yorum Gönder