Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- es11
- Template literals
- Hooks
- Nullish Coalescing Operator
- Next
- Python
- 카카오맵 api
- spread operation
- nextjs
- CSS
- Python #CodeUp
- optional chanining
- es6
- Python #Baekjoon
- React #Hooks
- HTML
- css #html
- 카카오맵
- firebase
- react
- JavaScript
- Redux
- Default parameter
- HTML #CSS
- 프로그래머스
- React Kakao map
- BOJ
Archives
- Today
- Total
목록Template literals (1)
거북이개발자

1. Template Literals (1)기존의 문자 작성시 const name='Ryu'; const age='27'; console.log('my name is '+name+' my age is '+age); 이런식으로 +기호를 이용하여 작성했다. (2)Template Literals이용시 const name='Ryu'; const age='27'; console.log(`my name is ${name} my age is ${age}`); 이렇게 간소화가 가능하다.
Web/ES6
2021. 2. 7. 14:54