Простые типы / Boolean

let sunIsStar = true
let str1 = sunIsStar.toString()
//str1 is "true"

let earthIsStar = false;
let str2 = earthIsStar.toString()
//str2 is "false"

console.log(`str1 is \"${str1}\"`)
console.log(`str2 is \"${str2}\"`)