單項(xiàng)選擇題

下列程序的輸出是:()。
function Ball() {
}
Ball.prototype = {
colors:['green','yellow']
}
var ball1 = new Ball()
var ball2 = new Ball()
ball1.colors.push('blue')
console.log(ball2.colors)

A.[’green,’yellow’]
B.[’green,’yellow’,’blue’]
C.undefined
D.以上都不對(duì)


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題var warp = document.getElementById("wrap");以下DOM操作存在語(yǔ)法正確的有()

A.wrap.innerHTML("HELLO WORLD");
B.wrap.style.background-image="img/bg.jpg"
C.wrap.style.border="1px solid#f00";
D.wrap.width="200px";

2.單項(xiàng)選擇題以下不屬于正則的方法有()

A.match
B.test
C.split
D.splice

3.單項(xiàng)選擇題<p class="MsoNormal"> var str = "";
var reg = /]+>/g;一下哪個(gè)選項(xiàng)返回的是true()

A.str.match(reg)
B.reg.test(str)
C.reg.exec(str);
D.str.search(reg)

5.單項(xiàng)選擇題以下call、apply、bind三個(gè)方法說(shuō)法錯(cuò)誤的是()

A.call和apply修改完this指向后,立即執(zhí)行
B.bind修改完this指向后不會(huì)立即執(zhí)行
C.bind修改完this指向后立即執(zhí)行
D.apply的第二個(gè)參數(shù)是數(shù)組