知识总结
面试题
function checkNullObj(obj) { return ( Object.keys(obj).length === 0 && Object.getOwnPropertySymbols(obj).length === 0 ); }