PHP coding challenge

Throwing exceptions

āœØ Your Task

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

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