2.4.1 멀티라인 문자열
템플릿 리터럴을 이용해 여러 줄에 걸친 문자열을 손쉽게 표현할 수 있다.
const a = `
First line
Second line
`;
console.log(a); // First line
// Second lineconst a = `First line
Second line`;
console.log(a); // First line
// Second lineLast updated