๐Ÿš€ Everything is free โ€” help us improve! Submit feedback and shape the platform.
๐Ÿ”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