Last updated 3 years ago
Was this helpful?
JS Solution
if (a === 0) { throw Error("Zero Error"); } if (a < 0) { throw Error("Negative Error"); } return "YES";