showing results for - "returning boolean values from functions"
Isabel
03 Sep 2020
1function isLess(a, b) {
2	//avoid this code
3  if (a < b) {
4    return true;
5  } else {
6    return false;
7  }
8  // There is a better way to do this
9  return a < b;
10 
11}