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
- JDBC
- IBM
- react hook
- isSquare
- DB2
- java api
- codewars
- TypeScript
- type
- custom hook
- descendingOrder
- Debug
- manifest.json
- codewar
- useEffect
- TABLESPACE
- react
Archives
- Today
- Total
taesik
number to string[] 본문
export function NumberToStringArr(n: number): string {
let arr: string[] = [...String(n)]
return arr;
}
'functions and trick > typescript_javascript' 카테고리의 다른 글
| 2D array of number. to find the sum of minimum value in each row. (0) | 2022.01.24 |
|---|---|
| has the same amount of 'x's and 'o's. (0) | 2022.01.23 |
| contain_all_rotation (0) | 2022.01.23 |
| Nth Smallest Element (0) | 2022.01.23 |
| Count the number of occurrences of each character and return it as a list of tuples in order (0) | 2022.01.23 |