var Country= {
"Japan": "日本",
"China": "中国",
"Korea": "韓国",
"Vietnam": "越南"
};
function getHashProperties(a){
let r = [];
for(let v in a){
if(a.hasOwnProperty(v))
r.push(a[v]);
}
return r;
}
console.log(getHashProperties(Country));
console.log(getHashProperties(Country).includes('日本'));
console.log(getHashProperties(Country).includes('Japan'));
console.log(getHashProperties(Country).indexOf('越南'));
console.log(getHashProperties(Country).indexOf('Vietnam'));
console.log(('China' in Country));
console.log(('韓国' in Country));