> For the complete documentation index, see [llms.txt](https://abdullah-aly.gitbook.io/jsonbyte/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://abdullah-aly.gitbook.io/jsonbyte/conditional/value.md).

# Value

### startsWith

you can get property value via `file.conditional.value.startsWith` function

```javascript
const json = require("jsonbyte");


const file = new json("./file.json")

const con = file.conditional.value.startsWith("a");
console.log(con);
```

### includes

you can get property value via `file.conditional.value.includes` function

<pre class="language-javascript"><code class="lang-javascript">const json = require("jsonbyte");


const file = new json("./file.json")

<strong>const con = file.conditional.value.includes("b");
</strong>console.log(con);
</code></pre>

### endsWith

you can get property value via `file.conditional.value.endsWith` function

<pre class="language-javascript"><code class="lang-javascript">const json = require("jsonbyte");


const file = new json("./file.json")

<strong>const con = file.conditional.value.endsWith("c");
</strong>console.log(con);
</code></pre>
