Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 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 */