fenzhi-utils
Version:
分值前端项目的js函数库
20 lines (19 loc) • 542 B
JavaScript
/**
* 判断是否为[null,undefined,'']
* @param {*} val 任意类型数据
* @returns {boolean}
*/
/*
CustomCheckIsNull(''); // true
CustomCheckIsNull(null); // true
CustomCheckIsNull(undefined); // true
CustomCheckIsNull('null'); // true
CustomCheckIsNull('undefined'); // true
CustomCheckIsNull('abc'); // false
CustomCheckIsNull(123); // false
CustomCheckIsNull({}); // false
CustomCheckIsNull([]); // false
*/
function CustomCheckIsNull(val) {
return ['undefined', undefined, '', 'null', null].includes(val);
}