> For the complete documentation index, see [llms.txt](https://docs.servoy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.servoy.com/reference/servoycore/dev-api/js-lib/boolean.md).

# Boolean

## Overview

A **Boolean** is a data type that represents one of two values: `true` or `false`.

## Key Characteristics

1. **Basic Definition:**\
   A Boolean value is either `true` or `false`. These values are typically the result of comparison operations or logical expressions.
2. **Type Conversion:**\
   Any value in JavaScript can be converted to a Boolean using the `Boolean()` function or double negation `!!`. **Examples:**

   ```js
     Boolean(0); // false
     Boolean(1); // true
     
   ```

````
    
1. **Common Use Cases:**  
    **Conditionals:** Boolean values are essential in `if` statements to control the flow of a program\.
    ```js
      if (isAvailable) {
          console.log("The item is available!");
      }
      
````

````
**Logical Operators:** Boolean values work with operators like `&&`, `||`, and `!` for complex conditions\.
```js
  let result = isAvailable && isAffordable;
  
````

```
    
1. **Truthiness and Falsiness:**  
    Some values in JavaScript are inherently "truthy" \(treated as `true`\) or "falsy" \(treated as `false`\)\. **Falsy values** include: `false`, `0`, `""`, `null`, `undefined`, and `NaN`\.


---
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.servoy.com/reference/servoycore/dev-api/js-lib/boolean.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
