JavaScript HTML CSS Roll Dice Game passo a passo
const throwdice = () => ~~(Math.random() * 6) + 1;
// Examples
throwdice(); //2
Batman
const throwdice = () => ~~(Math.random() * 6) + 1;
// Examples
throwdice(); //2