Are the Numbers Equal?

Published by Nomove in

Create a function that returns true when num1 is equal to num2; otherwise return false.

Examples

IsSameNum(4, 8) ➞ false

IsSameNum(2, 2) ➞  true

IsSameNum(0, 6) ➞ false

Notes

Don't forget to return the result.

Watch a quick demo on how Edabit works.