Skip to main content

abRandom

A function that returns 0 or 1 with 50% probability.

This can be utilized when doing an AB testing.


Interface

const abRandom: () => 0 | 1

Usage

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

const ab = abRandom();