陣列 用中括號括起來的一組相同的型別不同名稱 如車的名字 var car=new array("audi","bmw","volve")
物件 用花括號括起來的乙個物體,裡面有其屬性及其屬性值 如乙個人有姓名、性別、年齡 var person=
undefined 表示當變數建立時並沒有賦予其值
物件就是變數,擁有方法和屬性(屬性就是與物件相關的值,方法就是能夠在物件上執行的動作---屬性指本身的固有屬性,方法指能操作動作)
function myfunction() [
var x=5;
return x; }
var y=myfunction(); /*y=5, myfunction()的值是函式返回值 */
區域性變數和全域性變數都要宣告(var)
獲取當前時間,var day=new date().getday(); /*星期天到星期六 0-6*/
for迴圈中的條件語句(語句2)可省略,但是必須在迴圈中提供break,否則迴圈無法停下來
break語句和continue語句 /*break語句跳出整個迴圈,continue語句跳出此次迴圈,進行下一次迴圈*/
try語句和catch語句、throw語句 /*try語句裡面放的是錯誤的**塊,而catch語句放的是提示錯誤的資訊(err.message),throw語句則是自定義錯誤的內容(比如彈出什麼錯誤)*/
sql 基本語句(摘自w3c school)
select select 列名稱 from 表名稱 select from 表名稱 select lastname,firstname from persons insert insert into 表名稱 values 值1,值2,insert into table name 列1,列2,val...
JS例項學習筆記 w3cschool 菜鳥教程
document.write this is a string 生成普通文字 document.write date html 函式 document.write html,生成標籤var name prompt please input your name anne 後面的引數為輸入框的預設值va...
JS例項學習筆記 w3cschool 菜鳥教程
document.write this is a string 生成普通文字 document.write date html 函式 document.write html,生成標籤var name prompt please input your name anne 後面的引數為輸入框的預設值va...