-
[javascript] jsp사용시 js template literal 해결javascript 2022. 5. 2. 00:07
jsp의 $로 인식되어 template literal이 무시된다. \을 앞에다가 붙이면 해결된다.
var str = `나는 \${변수}이고, 나이는 \${변수}살 입니다`;
https://medium.com/@daveford/template-literals-not-working-f5f0c7553f8b
'javascript' 카테고리의 다른 글
[javascript] Promise then/catch/finally (0) 2023.10.01 [javascript] constructor function (0) 2022.12.01 [javascript] Object vs JSON (0) 2022.06.01 [javascript] var,let,const/변수 scope/호이스팅 (0) 2022.05.01