当前位置:网站首页>js 变量作用域和函数的学习笔记
js 变量作用域和函数的学习笔记
2022-07-06 09:17:00 【阿波次嘚】
变量的作用域:限定变量的可用范围,分为函数作用域和全局作用域。
函数作用域:
函数以外是全局作用域 – 变量只能在函数内部访问 (函数的形参 是局部变量–相当于内部声明了形参对应的变量)。
全局作用域:函数以内是函数作用域 – 变量可以在任意作用域下访问到。
~~在函数内部不加关键字(var)声明的就是全局变量,但是严格模式下这样声明不规范。
JS 是一门函数式编程语言,而函数是用于完成特定功能的代码块,当函数有返回值的时候可以作为一个变量的值,没有返回值时可以作为一个完成一个业务的工具。
~~当我们感觉用变量解决问题太过于繁琐和烧脑 则此时就要考虑是否抽个方法 来解决: “感觉没有什么问题却让你很难受” 的情况。
函数是一个Function类型的对象 它有两个 实用的内置属性:
(1) this
如图 this 在普通函数中 指向的是 window 对象,全局变量也相当于window对象的一个属性
所以在函数中通过this 也可以改变全局变量的值。
(2) arguments 表示 形参列表信息 – 参数 和 对应的值 (类数组对象)
和大家一起学习
边栏推荐
- R & D thinking 01 ----- classic of embedded intelligent product development process
- Arduino uno R3 register writing method (1) -- pin level state change
- E-commerce data analysis -- User Behavior Analysis
- Comparison of solutions of Qualcomm & MTK & Kirin mobile platform USB3.0
- [esp32 learning-2] esp32 address mapping
- 高通&MTK&麒麟 手机平台USB3.0方案对比
- JS变量类型以及常用类型转换
- 列表的使用
- Mysql database interview questions
- arduino UNO R3的寄存器写法(1)-----引脚电平状态变化
猜你喜欢
JS变量类型以及常用类型转换
Gallery's image browsing and component learning
open-mmlab labelImg mmdetection
Machine learning -- linear regression (sklearn)
RT thread API reference manual
共用体(union)详解【C语言】
Reno7 60W超级闪充充电架构
Redis面试题
MP3mini播放模块arduino<DFRobotDFPlayerMini.h>函数详解
Principle and implementation of MySQL master-slave replication
随机推荐
Contiki source code + principle + function + programming + transplantation + drive + network (turn)
冒泡排序【C语言】
Principle and implementation of MySQL master-slave replication
Inline detailed explanation [C language]
Kaggle competition two Sigma connect: rental listing inquiries (xgboost)
Encodermappreduce notes
FTP file upload file implementation, regularly scan folders to upload files in the specified format to the server, C language to realize FTP file upload details and code case implementation
STM32 how to locate the code segment that causes hard fault
物联网系统框架学习
Reno7 60W super flash charging architecture
5G工作原理详解(解释&图解)
Detailed explanation of Union [C language]
Kaggle competition two Sigma connect: rental listing inquiries
数据分析之缺失值填充(重点讲解多重插值法Miceforest)
ESP8266使用arduino连接阿里云物联网
gcc 编译选项
XML file explanation: what is XML, XML configuration file, XML data file, XML file parsing tutorial
Reading notes of difficult career creation
嵌入式启动流程
列表的使用