This option controls whether parentheses should be used to clarify precedence in expressions using binary operators other than arithmetic or relational.
var value = a || (b && c);
var value = a || b && c;