utilscommonabRandomOn this pageabRandom 50% 확률로 0또는 1을 반환하는 함수입니다. AB 테스트를 할 때 활용할 수 있습니다. Code 🔗 실제 구현 코드 확인 Interface typescriptconst abRandom: () => 0 | 1 Usage typescriptimport { abRandom } from '@modern-kit/utils';const ab = abRandom();