반응형
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
- hive
- array
- Java
- dataframe
- Apache
- Github
- PySpark
- Google Excel
- SQL
- Mac
- matplotlib
- django
- math
- Excel
- 파이썬
- Redshift
- gas
- Python
- list
- GIT
- PostgreSQL
- string
- PANDAS
- Google Spreadsheet
- c#
- numpy
- Kotlin
- Tkinter
- google apps script
Archives
- Today
- Total
달나라 노트
Google Apps Script : toPrecision (n자리의 숫자 string으로 변환) 본문
Google Apps Script
Google Apps Script : toPrecision (n자리의 숫자 string으로 변환)
CosmosProject 2022. 11. 29. 00:46728x90
반응형
toPrecision method는 어떤 숫자를 받아서 이 숫자를 n자리만 나타내도록 잘라서 string으로 변환해줍니다.
Syntax
Number.toPrecision(n)
toPrecision method는 위처럼 어떠한 숫자에 적용할 수 있습니다.
- n
toPrecision method는 어떠한 숫자를 parameter로 받습니다.
이 숫자는 숫자를 몇 자리 까지 나타낼지를 의미합니다.
function myFunction(){
var num = 7777.7777777777;
var num_toprecisioned = num.toPrecision(6);
Logger.log(num_toprecisioned);
Logger.log(typeof(num_toprecisioned));
}
-- Result
7777.78
string
위 예시를 봅시다.
num 변수에 7777.7777777777이라는 숫자를 할당했습니다.
- var num_toprecisioned = num.toPrecision(6);
그리고 이 숫자에 toPrecision method를 적용했습니다.
parameter로서 6이 주어졌으므로 정수부와 소수부를 합해서 총 여섯 자리까지만 나타낸다는 의미입니다.
7777.78
그래서 결과를 보면 7777.78입니다.
총 6개의 숫자가 있으며 그 이하로는 반올림하여 없애버렸습니다.
- typeof(num_toprecisioned)
또한 이 부분을 보면 toPrecision의 결과는 숫자가 아닌 string type인 것을 알 수 있습니다.
728x90
반응형
'Google Apps Script' 카테고리의 다른 글
Google Apps Script : isFinite (숫자가 유한값인지 여부 판단) (0) | 2022.11.29 |
---|---|
Google Apps Script : toString (n진수로 숫자 전환) (0) | 2022.11.29 |
Google Apps Script : toFixed (소수점 n자리의 소수 표기, round, 반올림) (0) | 2022.11.29 |
Google Apps Script : toExponential() (소수점 n자리 지수표기) (0) | 2022.11.29 |
Google Apps Script : static attribute, static method, static member, 정적 속성, 정적 메서드, 정적 멤버 (0) | 2022.11.29 |
Comments