Blogger Information
Blog 145
fans 7
comment 7
visits 164679
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
JS的使用方式和常见数据类型
李东亚¹⁸⁰³⁹⁵⁴⁰¹²⁰
Original
847 people have browsed it

js入门基础知识:

1.js的使用方式有:

  • <script>……..</script>直接在html文档中使用js代码块,由script标签包裹;
  • <script src="js文件路径" type="text/javascript"><script>有script标签的src属性性引入外部js文件;

2.js代码的注释:

  • //单行注释
  • /* ..... */多行注释

3.js中声明变量的关键字:

  • var:声明一个变量
  • let:声明一个变量,不可重复声明(具备作用域属性)
  • const:声明一个只读常量

4.变量的命名规则(标识符规则)

  • 变量只能有字母 阿拉伯数字 下划线以及$组成
  • 不能以阿拉伯数字开头,必须以字母、下划线(_)或者美元符号($)开头
  • js变量名:严格区分大小写
  • 当变量有var声明时:变量具备变量提升机制,提升变量声明,并不提升初始化赋值行为,故,变量的值就是未初始化赋值的undefined;当变量有let声明时,也有提升机制,但由于不会自动赋予初始值unfined,所以会提示错误;

5.js中常见的变量类型:

变量类型 说明 列子
String 字符串类型:通常有单引号(‘’)包裹 let name=”ldy”;
Number 数字类型:通常直接跟数字即可 let age=20;
Boolean 布尔值类型:只有两个值true flase let sex=true;
Array 数组类型:可以储存多个不同类型的值,通常有中括号包裹[] let arr=[1,2,”three”,4]
Object 对象类型:JavaScript 里一切皆对象,一切皆可储存在变量里,由大括号包裹 let people={name=”ldy”;age=20;function myfun(){….}

6.变量类型:

  • 字面量:所见即所得,常见的由字符串变量 布尔值变量 数字变量等;
  • 引用变量:像数组和对象,以及变量赋值变量等;

7.变量中的特殊类型

  • null:一个表明 null 值的特殊关键字;
  • undefined:和 null 一样是一个特殊的关键字,undefined 表示变量未赋值时的属性。
  • 代表(Symbol) ( 在 ECMAScript 6 中新添加的类型).。一种实例是唯一且不可改变的数据类型。
Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:
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