Skip to main content

random

지정된 범위 안에서 실수형 난수를 반환합니다.

단일 인자가 전달되면 해당 인자를 최대값으로 간주하며, 최소값은 0으로 처리합니다. 두 개의 인자가 전달되면 첫 번째 인자는 최소값, 두 번째 인자는 최대값으로 사용됩니다.


Code

🔗 실제 구현 코드 확인

Interface

typescript
// 함수 오버로딩
function random(maximum: number): number;
function random(minimum: number, maximum: number): number;

Usage

Default

typescript
import { random } from '@modern-kit/utils';

const result = random(10); // 0 이상 20 미만의 실수형 난수를 반환
typescript
import { random } from '@modern-kit/utils';

const result = random(5, 10); // 5 이상 20 미만의 실수형 난수를 반환