Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 18, 2021 04:11 pm GMT

Boolean Values

Understanding Boolean Values

Another data type is the Boolean. Booleans may only be one of two values: true or false.

Note: Boolean values are never written with quotes. The strings "true" and "false" are not Boolean and have no special meaning in JavaScript.

  • Example:
function welcomeToBooleans() {  return true;}welcomeToBooleans(); // will display truefunction welcomeToBooleans() { return false; }welcomeToBooleans(); // will display false

Original Link: https://dev.to/rthefounding/boolean-values-2a13

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To