기타/기타 잡다한 것들

자바스크립트 기초2

제주도소년 2020. 2. 20. 15:18

[ 비교문 ]

- if , else if , else

var a = true;

if(true) console.log(true)

if(a) {
	console.log("hello");
    console.log("hello");
} else { 
	console.log("bye");
    }

switch

switch (type) {
	case "A":
    	console.log("AAA")
        break;
    case "B":
    	console.log("BBB")
        break;
    case "C":
    	console.log("CCC")
        break;
    case "D":
    	console.log("DDD")
        break;
}

[ 반복문 ] 

for , forEach, for-of, while

var sum = 0;

for (var i = 0; i<=10; i++) {
	console.log(i);
    sum += i;
}

console.log(sum);

[ 문자열 처리 ]

- 자바스크립트에서 문자와 문자열을 같은 타입이다

typeof "aaa" // string
typeof "b" // string
typeof 'c' //string, single quote도 사용 가능

// 문자열에는 다양한 메서드가 있다.
"ab:cd".split(":"); , replace , trim() 등

 

'기타 > 기타 잡다한 것들' 카테고리의 다른 글

자바스크립트 함수(중요함)  (0) 2020.02.20
자바스크립트 기초  (0) 2020.02.19
절대경로와 상대경로  (0) 2020.02.18
JavaScript 배열  (0) 2019.10.31
setInterval 예제  (0) 2019.10.31