Blogger Information
Blog 7
fans 0
comment 0
visits 4688
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
独孤九贱 JavaScript 笔记(二) —— 标识符、变量与字面量
残羽的博客
Original
846 people have browsed it

标示符

概念:

标示符是给函数和变量命名的工具。

规范:

必须以字母、下划线、$开头

不能 用数字、特殊符号开头,不能使用保留字。


变量

概念:

临时存储数据的容器

规范:

  • 使用 var 关键字创建

  • 命名要符合标示符规范

  • 按名称调用,区分大小写


字面量

概念:

在代码中可以直接使用的量,叫 字面量也叫直接量

例如:

128、‘PHP中文网’、true

tips:

通常是用来初始化对象,如果想要重复使用字面量,可以存储到变量或对象中。

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