1.alert() spa
[1.1]有阻塞做用,不點擊肯定,後續代碼沒法繼續執行對象
[1.2]alert()只能輸出string,若是alert輸出的是對象會自動調用toString()方法string
e.g. alert([1,2,3]);//'1,2,3'console
[1.3]alert不支持多個參數的寫法,只能輸出第一個值方法
e.g. alert(1,2,3);//1im
2.console.log() 數據
[2.1]在打印臺輸出co
[2.2]能夠打印任何類型的數據阻塞
e.g. console.log([1,2,3]);//[1,2,3]time
[2.3]支持多個參數的寫法
e.g. console.log(1,2,3)// 1 2 3