Write a function that returns true if an object is empty, and false otherwise.
true
false
isEmpty({}) ➞ true isEmpty({ a: 1 }) ➞ false
N/A