본문으로 건너뛰기

abRandom

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

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


Interface

const abRandom: () => 0 | 1

Usage

import { abRandom } from '@devgrace/utils';

const ab = abRandom();