A boolean in JavaScript can be either true or false:
if ( true ) console.log("always!")
if ( false ) console.log("never!")
When an option is specified as a boolean, it often looks like this:
$("...").somePlugin({
hideOnStartup: true,
onlyOnce: false
});
Was this information helpful?

