You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/js/Vre2/Validate whether a given va...

8 lines
262 B
JavaScript

function is_boolean(value)
{
return value === true || value === false || toString.call(value) === '[object Boolean]';
}
console.log(is_boolean(true));
console.log(is_boolean('bar'));