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
- 알고리즘
- 백준 16935
- 백준 18290
- 프로그래머스 네트워크 java
- 프로그래머스 도둑질 java
- 프로그래머스 연속된 수의 합 java
- 백준 17425
- 자바
- 백준 16927
- 프로그래머스 숫자의 표현 java
- Math.floor()
- 네트워크
- java 올림
- 백준 14391
- Arrays
- 백준 4375
- Math.ceil()
- java 내림
- java
- java 반올림
- 프로그래머스 옹알이 java
- Algorithm
- sort
- 0으로 채우기
- 백준 15661
- Codility
- time complexity
- 백준 11723
- 코딩테스트
- mysql
Archives
- Today
- Total
목록Javascript (1)
취미처럼
[JavaScript] == 와 === 의 차이
==은 값만 비교, ===은 type까지 비교한다. typeof null > "object" typeof undefined >"undefined" typeof 1 > "number" typeof '1' > "string" if(null == undefined) { console.log(true); } else { console.log(false); } //true if(null === undefined) { console.log(true); } else { console.log(false); } //false if(0 == '0') { console.log(true); } else { console.log(false); } //true if(0 === '0') { console.log(true); } e..
JavaScript/이론
2021. 3. 24. 15:23