Is it possible to access the value of a key within an object, directly in that same object?
For example:
const myObj = {
keyOne: 'value',
keyTwo: this.keyOne + 'another value'
})
I understand this question may have been asked before, but I haven't been able to find a solution to this issue.