Are the Numbers Equal?

Published by bangyen in

Create a function that takes two integers and checks if they are equal.

Examples

isEqual(5, 6) ➞ false

isEqual(1, 1) ➞ true

isEqual(36, 35) ➞ false

Notes

N/A

Watch a quick demo on how Edabit works.