Precedence
Precedence Table
// Think of:
log 1 + 1 * 4
// As:
log (1 + 1) * 4// this logs `false`
log 1 + 1 == 5 * 4
// the code above is functionally equivalent to
log (1 + 1) == (5 * 4)Last updated
// Think of:
log 1 + 1 * 4
// As:
log (1 + 1) * 4// this logs `false`
log 1 + 1 == 5 * 4
// the code above is functionally equivalent to
log (1 + 1) == (5 * 4)Last updated