### 定义变量
~~~
var a = 10;
var b = "hello world";
var c = true;
~~~
int a =10;
上面三个定义的类型分别是:Number;string;boolean
### 调用函数
~~~
function go(){
console.log("hello suho")}
go()
~~~
![](https://box.kancloud.cn/8760312abbefe020d1b99c2c8da85ecd_239x104.png)
没有调用,就没有执行
~~~
var arr = [1,2,3]
~~~
定义数组
~~~
console.log(arr.length)
~~~
![](https://box.kancloud.cn/d07aec21d44171b9b2babb8fbd6ebe36_263x70.png)
获取数组长度
~~~
console.log(arr[0])
~~~
![](https://box.kancloud.cn/0b4a3171e9d95ccfcf91f81d0307959c_275x68.png)
读取某一个值
~~~
for(var i=0;i<arr.length;i++){
console.log(arr[i])
}
~~~
![](https://box.kancloud.cn/ace89d07a104ca5387ed2acb9eaa405d_248x139.png)
输出每一项
for(初始值;循环条件停止条件;数值增减方式)
{循环的操作}
~~~
if(b>a){
console.log("b大于a")
}else{
console.log('b小于a')
}
~~~
真执行if,假执行else
~~~
while(b>a){
console.log("b大于a")
}
~~~
先判断后执行
~~~
do{
console.log("b大于a")
}while(b>a)
~~~
先循环再判断,直到判断条件为假。
* * *
~~~
var zhang = {
name:"zhangkexin",
age:20,
sex:"女"
}
~~~
定义对象
~~~
console.log(zhang.age)
~~~
获取对象的属性
- 第一章 git
- 1.1 git基本语法
- 1.2 版本回退
- 1.3 ssh的配置
- 第二章 markdown基本语法
- 第三章 HTML CSS
- 3.1 html基础知识
- 3.2 css基础
- 3.3 img垂直居中
- 3.4 清除鼠标悬停抖动
- 3.5 字体、列表、表格、文本、链接样式
- 3.6 属性继承
- 3.7 float
- 3.8 定位
- 3.9 li加边框文字移动问题
- 3.10 title旁边的小图标
- 第四章 Vue
- 4.1
- 第五章 JavaScript
- 5.1 基本语法
- 5.2 DOM事件
- 5.3 事件
- 5.4 jQuery引用
- 5.5 显示与隐藏
- 5.6 回到顶部
- 第六章 jQuery
- 6.1 基础语法