J.J.
0
Q:

Returning Boolean Values from Functions

function isLess(a, b) {
	//avoid this code
  if (a < b) {
    return true;
  } else {
    return false;
  }
  // There is a better way to do this
  return a < b;
 
}
1

New to Communities?

Join the community