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...

9 lines
286 B
JavaScript

function is_char(value)
{
if (Object.prototype.toString.call(value) !== '[object String]')
return false;
return value && value.length === 1;
}
console.log(is_char('f'));
console.log(is_char('*'));