function hasNullProp(obj) { for (const key of Object.keys(obj)) { if (obj[key] === null) { return true } } return false } // Returns true const hasOneNullProp = hasNullProp({ foo: 'string', bar: null })