Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 후위표기
- 재귀함수
- Java
- parseInt()
- 조합 재귀
- 자바
- 재귀
- jquery 속성선택자
- 순열코드
- java Collections.sort()
- 자바 재귀 조합
- jquery 필터선택자
- 서로소
- 자바스크립트 이벤트처리
- 자바 순열 코드
- jquery 이벤트 처리
- Interface
- char to str
- java lambda
- inner class
- 상속
- 알고리즘 그래프
- 자바입출력
- 자바 조합 재귀
- 알고리즘
- 자바스크립트 이벤트중지
- jquery dom 계층 선택자
- str to char array
- java 내부 클래스
- 순열 재귀
Archives
- Today
- Total
유블로그
자바스크립트 연산자 본문
+ 연산자
var add1 = 1 + 2;
var add2 = 'hello' + 'world';
var add3 = 1 + 'string';
var add4 = 'string' + 2;
console.log(add1); // 3
console.log(add2); // helloworld
console.log(add3); // 1string
console.log(add4); // string2
typeof 연산자
숫자 | number |
문자열 | string |
불린값 | boolean |
null | object |
undefined | undefined |
객체 | object |
배열 | object |
함수 | function |
== vs ===
== : 타입이 다르면 타입 변환 후 비교
=== : 타입이 달라도 그냥 비교
console.log(1 == '1'); // true
console.log(1 === '1'); // false
** 코딩 가이드 라인에서는 === 로 비교하는 것을 권장한다. **
!! 연산자
피연산자를 boolean 값으로 변환하는 연산자이다.
console.log(!!0); // false
console.log(!!1); // true
console.log(!!'string'); // true
console.log(!!''); // false
console.log(!!true); // true
console.log(!!false); // false
console.log(!!null); // false
console.log(!!undefined); // false
console.log(!!{}); // true - 객체는 비어있어도 true다.
console.log(!![1,2,3]); // true
'JavaScript & jQuery' 카테고리의 다른 글
자바스크립트 함수 객체 (0) | 2021.06.18 |
---|---|
자바스크립트 함수, 함수 호이스팅 (0) | 2021.06.18 |
자바스크립트 배열 (0) | 2021.06.17 |
프로토타입 (0) | 2021.06.17 |
자바스크립트 데이터 타입 (0) | 2021.06.17 |