Tadamory/frontend-project-lvl1

View on GitHub
src/games/even.js

Summary

Maintainability
A
55 mins
Test Coverage
import { cons } from 'hexlet-pairs';
import { playGame } from '../index';
import getRandNumber from '../generator';

const startRange = 1;
const endRange = 10;
const gameCondition = 'Answer "yes" if number even otherwise answer "no".';

const isEven = (number) => number % 2 === 0;

const getRoundData = () => {
  const question = getRandNumber(startRange, endRange);
  const correctAnswer = isEven(question) ? 'yes' : 'no';
  return cons(question, String(correctAnswer));
};

export default () => playGame(gameCondition, getRoundData);