- 控制臺(tái)輸出
console.log();
alert();
document.write(); - 變量定義
var name = 123;
var name = 'string'; - 變量作用域
if(true){
var a = 1;
}
console.log(a);
與java不同隔箍,javascript中可用
- 六大數(shù)據(jù)類型
Number Boolean String Undefined Null
引用類型 Array Function Object- Array數(shù)組
var array = [1,2,3]; - function函數(shù)
- Array數(shù)組
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