Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 answers
573 users
const theobj = {}; const objectEmpty = Object.keys(theobj).length === 0; console.log(objectEmpty); /* run: true */
const theobj = {}; const objectEmpty = Object.entries(theobj).length === 0 && theobj.constructor === Object; console.log(objectEmpty); /* run: true */