JavaScript undefined

undefined 类型

undefined 代表值不存在。

// 变量不存在
typeof v // 'undefined' | “此处有坑” typeof 检测变量返回的是 'undefined' 而不是 undefined,前者是字符串类型,后者是 undefined 类型

// 索引不存在
[][0] // undefined
 
// 没有传递参数
(function (a) {
    console.log(a) // undefined 
})();

// 函数没有返回值
console.log(function () {} ()); // undefined

更多教程 HTML5 教程 CSS3 教程 JavaScript 教程 JQuery 教程 React.js 教程 Node.js 教程 Koa2 教程 Python 教程 Linux 教程