Value
startsWith
const json = require("jsonbyte");
const file = new json("./file.json")
const con = file.conditional.value.startsWith("a");
console.log(con);includes
const json = require("jsonbyte");
const file = new json("./file.json")
const con = file.conditional.value.includes("b");
console.log(con);endsWith
Last updated