Are the Numbers Equal?

Published by Bproothi 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(2, 3) ➞ false

Notes

Don't forget to return the result.

Watch a quick demo on how Edabit works.