博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js 返回 undefined 值的情况
阅读量:6481 次
发布时间:2019-06-23

本文共 492 字,大约阅读时间需要 1 分钟。

  • 来源 [三生石上] 翻译的JavaScript 秘密花园 ()
  • 访问声明,但是没有初始化的变量
    js var aaa; console.log(aaa); // undefined
  • 访问不存在的属性
    js var aaa = {}; console.log(aaa.c);
  • 访问函数的参数没有被显式的传递值
    js (function (b){ console.log(b); // undefined })();
  • 访问任何被设置为 undefined 值的变量
    js var aaa = undefined; console.log(aaa); // undefined
  • 没有定义 return 的函数隐式返回

    js function aaa(){} console.log(aaa()); // undefined

  • 函数 return 没有显式的返回任何内容

    js function aaa(){ return; } console.log(aaa()); // undefined

转载于:https://www.cnblogs.com/maiyan/p/3548223.html

你可能感兴趣的文章
彻底学会使用epoll(一)——ET模式实现分析
查看>>
脱离标准文档流(2)---定位
查看>>
IO流之字符流
查看>>
集合异常之List接口
查看>>
Softmax回归
查看>>
紫书 习题11-11 UVa 1644 (并查集)
查看>>
App工程结构搭建:几种常见Android代码架构分析
查看>>
使用openssl进行证书格式转换
查看>>
ZOJ 3777 Problem Arrangement
查看>>
Callable和Future
查看>>
少用数字来作为参数标识含义
查看>>
ScrollView中嵌套ListView
查看>>
Algs4-2.3.1如何切分数组
查看>>
观察者模式
查看>>
在properties.xml中定义变量,在application.xml中取值问题
查看>>
cell reuse & disposebag
查看>>
【故障处理】ORA-12545: Connect failed because target host or object does not exist
查看>>
云时代,程序员将面临的分化
查看>>
js判断移动端是否安装某款app的多种方法
查看>>
学习angularjs的内置API函数
查看>>