Answers for "Create a variable, stringTrue, which has a value of true and is a string javascript"

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
3

js string to boolean

// Do
var isTrueSet = (myValue == 'true');
// Or
var isTrueSet = (myValue === 'true');
Posted by: Guest on April-02-2020

Code answers related to "Create a variable, stringTrue, which has a value of true and is a string javascript"

Browse Popular Code Answers by Language