“węzeł JS konwertuje ciąg na boolean” Kod odpowiedzi

Konwertuj ciąg na boolean js

var myBool = Boolean("false");  // == true

var myBool = !!"false";  // == true
Breakable Barracuda

Ciąg do boolean javascript

let toBool = string => string === 'true' ? true : false;
// Not everyone gets ES6 so here for the beginners
function toBool(string){
	if(string === 'true'){
      return true;
    } else {
      return false;
    }
}
NotDamian

JS String to Boolean

// Do
var isTrueSet = (myValue == 'true');
// Or
var isTrueSet = (myValue === 'true');
Cybernated Dev

węzeł JS konwertuje ciąg na boolean

// In React Or Node Js Or Any JavaScript Framework

const AnyName = JSON.parse("true"); //YourSreing

//Now You data converted Boolean Value

// This is how it should be if you store the database
AnyName : true,

M Hemel Hasan

Konwertuj boolean na String JavaScript

booleanToString = b => { return b.toString(); }
// Way cleaner Version! easy readability!!
TechWhizKid

Odpowiedzi podobne do “węzeł JS konwertuje ciąg na boolean”

Pytania podobne do “węzeł JS konwertuje ciąg na boolean”

Więcej pokrewnych odpowiedzi na “węzeł JS konwertuje ciąg na boolean” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu