Lodash _.isObjectLike() method lab

Medium
0.0% Acceptance

In this lab, you will learn about the _.isObjectLike() method from the popular JavaScript library, lodash. The _.isObjectLike() method checks if the given value is object-like. A value is considered object-like if it's not a primitive data type (null, undefined, boolean, number, string, and symbol) and is not a function.