string.split('') 그리고 array.join('')
string.split() white space 없을 때, 'abc'.split(''); //['a','b','c'] split a string into an array of its character white space 있을 때, 'abc'.split(' '); //['abc'] 그 string 그대로 array의 원소로 넣어준다. array.join() white space 없을 때, ['a','b','c'].join(''); //'abc' array에 있는 원소를 합쳐서 하나의 string으로 white space 있을 때, ['a','b','c'].join(' '); //'a b c' 하나의 string으로 만들어주는 것은 같지만 array 원소와 원소 사이에 한 칸 공백
reset css
* { box-sizing: border-box; margin: 0; } body { font-family: "DM Sans", sans-serif; } /* Reset CSS */ a { text-decoration: none; color: inherit; } button, input, textarea { font-family: "DM Sans", sans-serif; font-size:16px; } button:focus, button:active, input:focus, input:active, textarea:focus, textarea:active{ box-shadow:none; outline:none; } ol, ul, li { list-style:none; padding-left:0; mar..