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
150 B
JavaScript

function is_null(val)
{
return val === null;
}
console.log(is_null(null));
console.log(is_null('bar'));