Returning Boolean Values from Functions

JavaScript
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;
 
}
Source

Also in JavaScript: