Objects Practice
Objects Practice
/*
1- *** Compare Objects ***
Define a function, compareObjects, that accepts two objects as
arguments.
compareObjects should return true if both objects have exactly the same
key/value pairs. Otherwise, compareObjects should return false.
Assume the objects are not nested.
*/