JavaScript coding challenge

Throwing errors

āœØ Your Task

Calculate and return the reciprocal of x (1 / x). If x is equal to zero throw an Error with a message Division by zero.

āœļø JavaScript
šŸ‘‰ Press "Run" and check the result below.
Test cases
The reciprocal of 2 should be 0.5
Function should throw an Error with a message Division by zero when calling with a value of zero.

Want to try another challenge?