function teacher (name,age,type){ this.name = name; this.age = age; this.type = t...
function teacher (name,age,type){ this.name = name; this.age = age; this.type = t...
//員工方法 function Emp(post,wage){ this.post = post; this.wage = wage; } //部門方法 functi...
/* 今天學(xué)習(xí)了JS的解析與執(zhí)行過程,感覺好牛逼,記錄下來(lái),以便日后復(fù)習(xí) */ //一階段 var a = 5; function f(n){ alert(a); } f()...
這兩天學(xué)習(xí)了JavaScript創(chuàng)建對(duì)象,老師留下的作業(yè),感覺挺有意義的,于是保存下來(lái)! /* 1、創(chuàng)建一個(gè)學(xué)生類,里面有名字、年齡、性別屬性 2、創(chuàng)建一個(gè)班級(jí)類,里面有名字...