“JS -Wert für boolean” Code-Antworten

String zum Booleschen 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 -Wert für boolean

const message = '';
console.log(!! message) // false
Quaint Quelea

Ähnliche Antworten wie “JS -Wert für boolean”

Fragen ähnlich wie “JS -Wert für boolean”

Weitere verwandte Antworten zu “JS -Wert für boolean” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen