Is there a way to access a sibling property from a method in JavaScript? This seemingly simple task has proven challenging for me. Take a look at the sample code below.
let f = {
a: 3,
printMyBrother() { console.log(X) }
}.printMyBrother
f()
To programmatically log "3" on the console using the above code, what should be replaced by X
?