题目描述
补充函数的 TODO 部分,模拟 lodash 中的 _.get() 函数。
测试用例
输入:
const obj = { selector: { to: { toutiao: 'FE Coder' } }, target: [1, 2, { name: 'byted' }] };
get(obj, 'selector.to.toutiao', 'target[0]', 'target[2].name');
2024/3/19小于 1 分钟
补充函数的 TODO 部分,模拟 lodash 中的 _.get() 函数。
输入:
const obj = { selector: { to: { toutiao: 'FE Coder' } }, target: [1, 2, { name: 'byted' }] };
get(obj, 'selector.to.toutiao', 'target[0]', 'target[2].name');