我正在尝试检查是否存在某些单词,但据我所试,似乎没有用。
Chars = {
ae: 'hello',
oe: 'world',
};
if(ae in Chars){
document.write('yes');
}else{
document.write('no');
}
我只是想知道
ae
是否存在 最佳答案
尝试这个:-
object.hasOwnProperty
if(Chars.hasOwnProperty('ae'))
{
//Do something
}
关于javascript - 检查JavaScript中的数组或Json值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16512053/