Deep Equals

We'll cover the following...

Deep Equals

Instructions

Write a function that will take in two items of any type. The function should perform a deep equality check.

Inputs: Any, Any

Output: Boolean

Hints

  • Deep equality is used to check equivalence of objects and arrays. Because of the concept of ...