Blogger Information
Blog 9
fans 0
comment 0
visits 9086
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
变量、常量、数据类型
不忘初心
Original
610 people have browsed it

变量

用 let 声明,一般用于客户填写的信息,例如:姓名、身份证号、手机号码、家庭地址。是可以进行更新的。常量的第一次赋值,为初始化,第二次赋值为更新,也可以删除变量的值 let UserName=null。
声明一个变量:let username = “Mary”

变量

用 const 声明,一般用于固定数据,不能被更新。例如:性别、国籍名称、等一些已知并且不容易被修改的值。在声明常量时,必须初始化。
声明一个常量:const nationality = “China”

命名规则

只允许使用:字母、数字、下划线、$开头,不允许以数字开头:也不允许使用关键字。
正确命名:
UserName\$username_username\
错误命名:
123\let\用户姓名\

驼峰格式命名举例:UserName
蛇形命名举例:user_name

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:以后, 不论什么数据 , 尽可能声明为常量, const ,除非你确定以后要更新它, 因为一旦声明为常量后, 如果 修改必报错, 可以提前发现问题
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post