boolean values code example

Example 1: 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;
 
}

Example 2: what is a Boolean

Boolean refers to a system of logical thought that is used to create true/false
statements. A Boolean value expresses a truth value
(which can be either true or false). Boolean logic was developed by
George Boole, an English mathematician and philosopher, and has become the
basis of modern digital computer logic.

Example 3: boolean n = true

boolean n = true;

Tags:

Misc Example