Skip to content

Commit

Permalink
Update docs/src/pages/docs/api/numberToHanuglMixed.ko.mdx
Browse files Browse the repository at this point in the history
Co-authored-by: 박찬혁 <[email protected]>
  • Loading branch information
BO-LIKE-CHICKEN and okinawaa authored Oct 10, 2024
1 parent 0e9d916 commit 665c3d2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/src/pages/docs/api/numberToHanuglMixed.ko.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ function numberToHangulMixed(input: number, options?: { spacing?: boolean }): st
## Examples

```tsx
numberToHangulMixed(21_0000); // '21만';
numberToHangulMixed(1_2345); // '1만2,345';
numberToHangulMixed(1_2345_6780); // '1억2,345만6,780';
numberToHangulMixed(1_2345_6780, { spacing: true }); // '1억 2,345만 6,780';
numberToHangulMixed(210_000); // '21만';
numberToHangulMixed(12_345); // '1만2,345';
numberToHangulMixed(123_456_780); // '1억2,345만6,780';
numberToHangulMixed(123_456_780, { spacing: true }); // '1억 2,345만 6,780';
```

## 사용해보기
Expand Down

0 comments on commit 665c3d2

Please sign in to comment.