Answers for "js parse bool"

1

javascript parse string to boolean

let bool = "True";
JSON.parse(bool.toLowerCase());
Posted by: Guest on July-26-2021
6

convert string true to boolean true javascript

stringToBoolean: function(string){
    switch(string.toLowerCase().trim()){
        case "true": case "yes": case "1": return true;
        case "false": case "no": case "0": case null: return false;
        default: return Boolean(string);
    }
}
Posted by: Guest on May-05-2020
2

javascript true string to boolean

var isHidden='true';
var isHiddenBool = (isHidden == 'true');
Posted by: Guest on July-22-2019
0

string to boolean javascript

const stringBools = [
  'true',
  'false',
  'asdf'
];
const bools = [];

for (const i = 0; i < stringBools.length; i++) {
  const stringBool = stringBools[i];
  if (stringBool == true) {
    bools.push(true);
  } else if (stringBool == false) {
    bools.push(false);
  } else {
    bools.push(null /* Change if you like */);
  }
}
Posted by: Guest on October-03-2020
-1

js parse bool

function parseBool(value) {
    if (typeof value === "string") {
        value = value.toLowerCase();
        if (value === "true" || value === "false") {
            return value === "true";
        }
    }
    return; // returns undefined
}
Posted by: Guest on September-24-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language