본문 바로가기
💻 하나씩 차곡차곡/Front-end

[javascript] ES6 - `` 사용법

by 뚜루리 2023. 2. 7.
728x90
320x100
``을 사용하는 문법이 뭔가 하다가 ES6에서 사용하는 것으로 확인되어....기록해두기....
{
  const weather = 'cloud';
  const temparature = '16°C';

  console.log('Today weather is ' + weather + ' and temparature is ' + temparature + '.');

  console.log(`Today weather is ${weather} and temparature is ${temparature}.`);
}

``를 이용하면 + 하지 않고 쉽게 작성할 수 있음. 

 


728x90
320x100