I m trying to access an object property through a string.
What I m trying to do is :
const data = {
key: {
subKey: 'value'
}
};
const theString = 'key.subKey';
function accessPropFromString(obj, stringCall) {
// I don't know what to put on here
}
console.log(accessPropFromString(data, theString)) // prints 'value'
I absolutely don't know how to make that happen...
How can I do this kind of stuff with JavaScript ?