javascript check if json is empty code example
Example 1: javascript check if object is empty
function isObjectEmpty(obj) {
return Object.keys(obj).length === 0;
}
Example 2: how to check if object is empty javascript
function isEmptyObject(obj) {
return !Object.keys(obj).length;
}
Example 3: javascript test for empty object
Object.entries(obj).length === 0 && obj.constructor === Object
Example 4: how to check if a json object is empty
obj.length() == 0
is what I would do.
Example 5: javascript check if json file is empty
const fs = require('fs');
var webProjects = JSON.parse(fs.readFileSync('webProjects.json'));
if(Object.entries(webProjects).length === 0)