Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 104 Bytes

File metadata and controls

12 lines (8 loc) · 104 Bytes

any

Peut-être de n’importe quel type.

Exemple

let a1: any = true;
a1 = "val";
a1 = 2;