Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 225 Bytes

section3.12.md

File metadata and controls

11 lines (8 loc) · 225 Bytes

Section 3.12: Any

When unsure of a type, any is available:

let anything: any = 'I am a string';
console.log(anything); // I am a string

anything = 5; // but now I am the number 5
console.log(anything); // 5