单项选择题

function myFunction(x, y) {
y = y || 0;
}
myFunction(1)
console.log(y)打印结果是()

A.0
B.1
C.undefined
D.报错:yis not defined