- 控制台输出
console.log();
alert();
document.write(); - 变量定义
var name = 123;
var name = 'string'; - 变量作用域
if(true){
var a = 1;
}
console.log(a);
与java不同,javascript中可用
- 六大数据类型
Number Boolean String Undefined Null
引用类型 Array Function Object- Array数组
var array = [1,2,3]; - function函数
- Array数组
var sum = function (a,b){return a + b}
var result = sum(1,2);
- typeof 操作符
typeof 123 //Number
typeof 'abc' //String
typeof true //Boolean
typeof undefined //Undefined
typeof null //Object
typeof { } //Object
typeof [ ] //Object