Skip to content

Commit

Permalink
add file:http
Browse files Browse the repository at this point in the history
  • Loading branch information
smyhvae committed Feb 28, 2018
1 parent 918c88a commit 52524f8
Show file tree
Hide file tree
Showing 4 changed files with 970 additions and 1 deletion.
8 changes: 7 additions & 1 deletion 03-JavaScript/01-JavaScript语法基础:JS简介&变量.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,16 @@ PS:JS机械重复性的劳动几乎为0,基本都是创造性的劳动。而

(1)简单易用:可以使用任何文本编辑工具编写,只需要浏览器就可以执行程序。

(2)解释执行(**解释语言**):事先不编译、逐行执行、无需进行严格的变量声明。
(2)解释执行(**解释型语言**):事先不编译、逐行执行、无需进行严格的变量声明。

(3)基于对象:内置大量现成对象,编写少量程序可以完成目标

### 编程语言的分类

- 解释型语言:边解释边执行。例如:JavaScript、php。

- 编译型语言:事先把所有的代码翻译成计算机能够执行的指令。例如:c、c++。

## 开始写第一行JavaScript代码

### JavaScript代码的书写位置
Expand Down
Loading

0 comments on commit 52524f8

Please sign in to comment.