Write a function that returns true if given array is empty, and false otherwise.
true
false
isEmpty({}) ➞ true isEmpty({1, 2, 3}) ➞ false
N/A