如图中题目所述,我的代码如下,只AC50%,求大神指点! function find (obj, key) { if (! typeof obj === 'object') { return false; } if (key in obj) { return true; } else { return false; } } var line; while(line = read_line()){ if(Object.prototype.toString.call(line)==='[object Str...