function unsetimport { unset } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/object.js"; unset(object, path)Removes the property at path of object. Note: This method mutates object. Examplesvar object = { 'a': [{ 'b': { 'c': 7 } }] }; _.unset(object, 'a[0].b.c'); // => true console.log(object); // => { 'a': [{ 'b': {} }] }; _.unset(object, ['a', '0', 'b', 'c']); // => true console.log(object); // => { 'a': [{ 'b': {} }] }; ParametersobjectThe object to modify. pathThe path of the property to unset.