A dead simple, no frills get function.
const obj = { a: { b: ["c"]} }const value = get(obj, ["a", "b", 0])const value = get(obj, []) // undefined Copy
const obj = { a: { b: ["c"]} }const value = get(obj, ["a", "b", 0])const value = get(obj, []) // undefined
A dead simple, no frills get function.