📌  相关文章
📜  是字符串未定义的 null 还是空的 c# javascript 代码示例

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

代码示例1
/**
  * 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;
}