number to words
v1.0.0
니콜라스 C. 자카스
이 내용이 유용하다고 생각하시면 기부로 제 작업을 지원해 주세요.
양의 정수(또는 0)를 받아들이고 숫자에 대한 영어 설명을 반환하는 함수입니다.
npm 또는 Yarn을 사용하여 설치합니다.
npm install @humanwhocodes/number-to-words --save
# or
yarn add @humanwhocodes/number-to-words
Node.js 프로젝트로 가져옵니다.
// CommonJS
const { numberToWords } = require ( "@humanwhocodes/number-to-words" ) ;
// ESM
import { numberToWords } from "@humanwhocodes/number-to-words" ;
Deno 프로젝트로 가져오기:
import { numberToWords } from "https://cdn.skypack.dev/@humanwhocodes/number-to-words?dts" ;
대역폭을 절약하려면 축소된 버전을 가져오는 것이 좋습니다.
import { numberToWords } from "https://cdn.skypack.dev/@humanwhocodes/number-to-words?min" ;
그러나 디버깅 목적으로 축소되지 않은 버전을 가져올 수도 있습니다.
import { numberToWords } from "https://cdn.skypack.dev/@humanwhocodes/number-to-words" ;
가져온 후 양의 정수 또는 0을 numberToWords()
에 전달합니다.
console . log ( numberToWords ( 0 ) ) ; // "zero"
console . log ( numberToWords ( 10 ) ) ; // "ten"
console . log ( numberToWords ( 524 ) ) ; // "five hundred twenty-four"
numberToWords()
함수는 최대 999조까지 작동합니다. 그보다 더 큰 숫자가 필요하다면 부럽습니다.
npm install
실행하여 종속성을 설정하세요.npm test
실행하여 테스트 실행 아파치 2.0