首页 > 代码库 > js①

js①

JavaScript的引入方式

  1. 直接在script标签内部书写代码

```html <!DOCTYPE html>

``` 2. 通过script标签的src属性,引入外部的JavaScript文件

```html <!DOCTYPE html>

```

数据类型

在JavaScript中一种有5种原始类型 - 数值类型(number) - 字符串类型(string) - 布尔值类型(boolean) - null - undefined

变量的命名规则

命名规则: - 第一个字符可以是任意Unicode大小写字母,以及美元符号($)和下划线(_)。 - 第二个字符及后面的字符,还可以用数字。 - 不能使用保留字作为变量名

JavaScript保留字

abstract boolean break byte case catch char class const continue debugger default delete do double else enum exportextends false final finally float for function goto if implements import in instanceof int interface long native newnull package private protected public return short static super switch synchronized this throw throws transient true trytypeof var void volatile while with

example

合法的命名规则

arg0 _tmp $elem π

不合法的命名规则

1a 23 *** a+b -d var return

js①