Hi

template string 본문

WEB(웹)/javascript

template string

SharingWorld 2018. 6. 18. 23:38
$sender.on('click', function() {
	var message = $input.val();
	$('.chat-state-container')
		.append('<h1>' + message + '</h1>')
});
var template =
$('.chat-state-container')
	.append('<div>
	~~
	~~
	~~${message} // + 라는 뜻
	~~
	</div>')

	${message} //더하기가 됩니다.
	// 긴 문장 삽입시 ` ` 사용한다.


${variable} 은 variable에 대한 값이 `template string` 안에 들어간다는 뜻이다.








https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Template_literals

'WEB(웹) > javascript' 카테고리의 다른 글

프로토타입  (0) 2018.06.30
참조 타입의 특성  (0) 2018.06.30
자바스크립트 참조 타입(객체 타입)  (0) 2018.06.30
기본 타입  (0) 2018.06.30
(javascript) 함수 호출과 this  (0) 2018.06.25