Skip to main content

abRandom

50% 확률로 0또는 1을 반환하는 함수입니다.

AB 테스트를 할 때 활용할 수 있습니다.


Code

🔗 실제 구현 코드 확인

Interface

typescript
const abRandom: () => 0 | 1

Usage

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

const ab = abRandom();