Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

string to boolean js

// Everyone does one extra check. Here is a better answer

let toBool = string => string === 'true'; // ? true : false;
// Not everyone gets ES6 so here for the beginners
function toBool(string){
	return string === 'true';
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #string #boolean #js
ADD COMMENT
Topic
Name
7+9 =