Answers for "js check if user object is empty"

84

javascript check if object is empty

function isObjectEmpty(obj) {
    return Object.keys(obj).length === 0;
}
Posted by: Guest on July-24-2019
0

check if object values are empty

const isEmpty = !Object.values(object).some(x => x !== null && x !== '');
Posted by: Guest on January-16-2022

Code answers related to "js check if user object is empty"

Code answers related to "Javascript"

Browse Popular Code Answers by Language