⠀
Size: a a a
⠀
⠀
EP
function checkStorage(available, ordered) {
if (available <= 0 || ordered <= 0)
throw new Error("Empty or negative values");
if (available < ordered) throw new Error("Not enough of goods");
return "ok";
}
try {
console.log(checkStorage(1, 1));
} catch (e) {
console.log(e.message);
}
EP
SM
LA
ГФ
LA
ГФ
LA