A.創(chuàng)建父類對象作為子類的原型(prototype) B.使用 extends 關(guān)鍵子繼承父類 C.創(chuàng)建子類對象作為父類的原型(prototype) D.使用 class 關(guān)鍵子繼承父類
A.function show(text){ alert(text); } B.var showFun = function show(text){ alert(text); } C.var showFun = function(text){ alert(text); } D.var showFun =new function("text" , "alert(text)"};
A.string B.number C.function D.boolean