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
'💻 하나씩 차곡차곡 > Front-end' 카테고리의 다른 글
[Javascript] substr() VS substring() vs slice() (0) | 2023.04.29 |
---|---|
[자바스크립트/Javascript] 자식창 값 부모창에 전달하기 (0) | 2023.04.21 |
[Javascript] ES11 - 옵셔널체이닝 연산자 (?.) (0) | 2023.02.07 |
[javascript] $(document).ready vs $(window).onload (실행) (1) | 2022.07.06 |
[꿀팁] 캐시삭제 및 새로고침 쉽게 하기 (0) | 2022.07.05 |