JSFiddle - React, Tailwind, and code Playground
JavaScript
getWeight = () => {
const weight = prompt("Enter the weight of your egg.", "");
return weight;
}
let weight = '';
do {
weight = getWeight();
} while (weight === '');
getWeight = () => {
const weight = prompt("Enter the weight of your egg.", "");
return weight;
}
let weight = '';
do {
weight = getWeight();
} while (weight === '');