JSFiddle - React, Tailwind, and code Playground

by Pratik Galoria

JavaScript

getWeight = () => {
  const weight = prompt("Enter the weight of your egg.", "");
  return weight;
}

let weight = '';
do {
 weight = getWeight();
} while (weight === '');