Is Empty

Check if a value is empty (null, undefined, empty string, array, or object).

Code

General
value == null || (typeof value === 'object' ? Object.keys(value).length === 0 : value === '');

Parameters

Value to check

Browser·fetch() may be limited by CORS

More JavaScript Snippets