Say I have two methods on an Object.
Object = {
    MethodA() {
        console.log('A')
    },
    MethodB() {
        this.MethodA()
    }
}
The MethodA doesn't get called. why is this and how can I learn more about what I am doing wrong. What is the terminology called and where is this explained in the ECMA standard?
 
    