반응형
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
- Redshift
- matplotlib
- Mac
- Github
- Google Excel
- list
- numpy
- math
- google apps script
- Excel
- SQL
- array
- Python
- Google Spreadsheet
- Apache
- GIT
- 파이썬
- django
- Kotlin
- string
- hive
- PostgreSQL
- dataframe
- gas
- c#
- PANDAS
- PySpark
- Tkinter
- Java
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