function expect(argument) {
this.eat(argument) || this.undefined();
}
Can someone please help me explain how this code works... the question is focused on this.eat(argument) || this.undefined();
. I am guessing that one of those methods would run? and if it is, how do I tell which would run