๐Edge Case Discoveryยทbeginnerยทโฑ๏ธ 15โ30mยทโญ 100 XP
M-061Break the Division Function
Description
This division function works for most inputs. Find the inputs that break it.
Target Function
function safeDivide(a, b) {
return a / b;
}Intended Behavior
Returns the result of dividing a by b. Should return an error message for invalid inputs.
Related Lessons
0/2
Edge Case Discovery
๐ 0 / 2 found
Click Run / Check to validate your solution