mercredi 26 octobre 2016

Multiple operations in ternary operator

Is it possible to have multiple operations within a ternary operator's if/else?

I've come up with an example below, probably not the best example but I hope you get what I mean.

var totalCount = 0;
var oddCount = 0;
var evenCount = 0;
for(var i = 0; i < arr.length; i++) {
  if(arr[i] % 2 === 0) {
    evenCount ++;
    totalCount ++;
  } else {
    oddCount ++;
    totalCount ++;
  }
}

into something like:

var totalCount = 0;
var oddCount = 0;
var evenCount = 0;
for(var i = 0; i < arr.length; i++) {
  arr[i] % 2 === 0? evenCount ++ totalCount ++ : oddCount ++ totalCount ++;
  }
}

Aucun commentaire:

Enregistrer un commentaire