Condition operators can quickly become hard to be read.

The following code snippet illustrates this rule :

function sayHello() {
  var a = (a === 'A') ? 'is A' : 'is not A'; // Non-Compliant
}