Has, creates an array of values corresponding to paths of the object
object
(object): input objectpath
(Array|string): strings describing paths to be returned from an object
(boolean): boolean true is a direct property of the object
const result = objects.has({ front: [1, 3, 5], back: [37, 39] });
console.log(result, 'back[1]');
> true