템플릿 리터럴에서 숫자, 불리언, null, undefined를 출력해보고, typeof 결과도 확인해보세요.
const n = 10;
const b = false;
const x = null;
const u = undefined;
console.log(`${n}, ${b}, ${x}, ${u}`); // "10, false, null, undefined"
console.log(typeof `${n}`); // string
console.log(typeof `${b}`); // string
console.log(typeof `${x}`); // string
console.log(typeof `${u}`); // string