/*The values true and false are not strings. If you use quotes to surround booleans ("true" and "false"), those values become strings.*/ console.log(typeof true); console.log(typeof "true"); //boolean //string