template literal

React Native

React Native) Component 활용하기 - 1

이제부터는 이것저것 써보면서 익혀나가는 방식으로 학습할 예정 날짜 추출 - Date 활용하기 날짜 추출 함수 : Date() ※ 자바스크립트 함수임 [예시] const today = new Date(); const year = today.getFullYear(); const month = today.getMonth() + 1; const day = today.getDate(); [주의할 점] month는 0~11까지 범위값이 리턴되어 + 1해서 써야함 템플릿 리터럴 `(백틱 문자)로 문장을 감싸면 아래와 같이 string을 구성할 수 있음 const formatted = `${year}년 ${month}월 ${day}일`; 위 코드는 아래 코드와 동일함 const formatted = year + '년 ..

Kimss민
'template literal' 태그의 글 목록