Create a function that takes two integers and checks if they are equal.
isEqual(5, 6) ➞ false isEqual(1, 1) ➞ true isEqual("1", 1) ➞ false
If there is a string then it should return false.
false