반응형
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
- Github
- gas
- array
- Apache
- c#
- PANDAS
- Tkinter
- Mac
- Excel
- list
- 파이썬
- google apps script
- dataframe
- GIT
- Google Spreadsheet
- hive
- SQL
- Kotlin
- Java
- math
- string
- matplotlib
- PySpark
- PostgreSQL
- Google Excel
- numpy
- Redshift
- Python
- django
Archives
- Today
- Total
목록비교 연산자 (1)
달나라 노트
Google Apps Script : 비교 연산자, Comparison operator (==, ===, !=, !==, <, <=, >, >=)
여러 가지 비교 연산자에 대해 알아봅시다. 비교 연산자는 주로 2개의 값이 같은지, 다른지, 둘 중 뭐가 더 큰지 등을 비교하는 연산자입니다. Google Apps Script는 Javascript를 기반으로 하는 언어이기 때문에 일반적인 연산자는 보통 Javascript에서 사용하는 것과 비슷할 것입니다. Operator Description Example A == B A와 B의 값이 같으면 true 1 == 1 -> true 1 == '1' -> true 1 == 2 -> false A === B A와 B의 값과 data type까지 같으면 true 1 === 1 -> true 1 === '1' -> false 1 === 2 -> false A != B A와 B의 값이 다르면 true 1 != 1 -..
Google Apps Script
2022. 11. 22. 20:35