1.使用for in循环,没进到循环体里说明为空
function isEmpty(obj) { for(let key in obj) { return false; } return true; }