vendredi 22 juillet 2016

What is the return value of this conditional (groovy script)

What will be the return value of this if/else statement?

if (salary <= 3000) {
  return discount < 0.40
}
else {
  return discount < 0.60
}

I'm not sure if the return value of each if and else will be a boolean or 0.40 and 0.60?

Aucun commentaire:

Enregistrer un commentaire