728x90
300x250
SMALL
<p id="demo"></p>
<script>
let answer1 = "It's alright";
let answer2 = "He is called 'Johnny'";
let answer3 = 'He is called "Johnny"';
document.getElementById("demo").innerHTML =
answer1 + "<br>" + answer2 + "<br>" + answer3;
</script>
문자열을 둘러 싸고 있는 따옴표와 일하지 않는다면 문자열에 따옴표 사용 가능하다.
특수 문자열로 변경하기
만약 다음과 같이 "" 큰따옴표 안에 "" 큰따옴표로 묶인 문자열은
let text = "We are the so-called "Vikings" from the north.";
"We are the so-called"까지만 잘리게 된다.
위와같은 상황을 해결하기 위해서 백슬래시 이스케이프 문자를 사용할 수 있다.
백슬래스( \ ) 이스케이프 문자는 특수 문자를 문자열 문자로 변환해준다.
예시
let text = "We are the so-called \"Vikings\" from the north.";
let text2 = 'It\'s alright.';
let text3 = "The character \\ is called backslash.";
728x90
반응형
LIST
'javaScript > JS Tutorial' 카테고리의 다른 글
[자바스크립트] 문자열 길이 구하기 length (0) | 2022.09.06 |
---|---|
[javaScript] typeof 데이터 타입 확인하기 (0) | 2022.09.04 |
[javaScript] 자바스크립트 이벤트 (0) | 2022.08.27 |
[자바스크립트]객체 메소드 (0) | 2022.08.24 |
[javaScript] 객체 Objects, Properties, Methods 개념 (0) | 2022.08.21 |
댓글