// Example 1
let boo = false;
alert(typeof boo); // boolean
boo = String(boo); // now value is a string "true"
alert(typeof boo); // string
// Example 2
const str = "123";
alert(typeof str); // string
const num = Number(str); // becomes a number 123
alert(typeof num); // number```