📌  相关文章
📜  javascript 验证字符串是否为 null 未定义为空 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:31.587000             🧑  作者: Mango

代码示例2
/**
  * Checks the string if undefined, null, not typeof string, empty or space(s)
  * @param {any} str string to be evaluated
  * @returns {boolean} the evaluated result
*/
function isStringNullOrWhiteSpace(str) {
    return str === undefined || str === null
                             || typeof str !== 'string'
                             || str.match(/^ *$/) !== null;
}