\n 줄 바꿈
\t 탭
\', \" 따옴표
\\ 역슬래시
문자열의 길이
<script> alert( `My\n`.length ); // 3 </script>
\n은 ‘특수 문자’ 하나로 취급되기 때문에 My\n의 길이는 3입니다.