爲什麼不能正常工作?我想用這段代碼檢查對象的子對象是真/假,但是當我嘗試它時它總是返回false。檢查子對象是否爲真
var testobject = {
a:true,
b:false
}
function test(check) {
if (testobject.check) {
console.log('it works')
}
else {
console.log('it doesn\'t work')
}
}
test('a');