Javascript参数进入函数中查找数组中的点

时间:2014-10-17 16:15:11

标签: javascript

这个javascript函数非常适合在硬编码时从对象中读取值。

function showNote(){
document.write(notes.B[1]);
}

但我无法使用变量。我想做这样的事情,但我得到一个未定义的变量消息。

<script>
showNote(B)
</script>

function showNote(y){
console.log(y);
document.write(notes.y[1]);
}

0 个答案:

没有答案