Универсальные (динамические) типы

//Initialized by any type
let d = "some string";
d = 3.14;
d = [235];
d = new Date();

console.log(`d is "${d}"`);