You need to enable JavaScript to run this app.
hong_devlog
D
L
[JS] Text formatting
javascript |
January 30, 2020
긴 문장 안에 변수들이 들어가야 하면 + 로 일일이 연결을 해주기가 귀찮다.
이때는 format를 사용해서 작성할 수 있다.
Python에서 f formatting이 있었다면, JS는 ${} 를 활용한다.
{} 안에 들어가는 것은 변수다.
`
${
year
}
년
${
month
}
월
${
date
}
`
Hello, I'm
@hongdev
🍓Github
← [JS] JavaScript 개념 및 변수
[JS] get random number between two numbers →