반응형
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 |
Tags
- Github
- PostgreSQL
- google apps script
- PANDAS
- Redshift
- gas
- array
- numpy
- dataframe
- Python
- list
- string
- c#
- Java
- math
- 파이썬
- Google Excel
- GIT
- Tkinter
- Kotlin
- Excel
- Google Spreadsheet
- Mac
- Apache
- django
- matplotlib
- hive
- SQL
- PySpark
Archives
- Today
- Total
목록isInteger (1)
달나라 노트
Google Apps Script : isInteger (정수값 판단)
isInteger method는 특정 값을 받고 이 값이 정수인지 아닌지를 판단해줍니다. Syntax Number.isInteger(number) isInteger method는 특정 숫자를 parameter로 받고 이 숫자가 정수라면 true를 return하고, 이 숫자가 정수가 아니라면 false를 return합니다. function myFunction(){ Logger.log(Number.isInteger(15)); Logger.log(Number.isInteger(-15)); Logger.log(Number.isInteger(3.461)); Logger.log(Number.isInteger('sadf')); } -- Result true true false false - Number.isInteg..
Google Apps Script
2022. 11. 29. 01:09