Is there any way to access the value of a key of an object in the same object?
Something like this:
const myObj = {
keyOne: 'value',
keyTwo: this.keyOne + 'another value'
})
I know that this may be a previously asked question, but I didn't found any answer to this problem.