isempty typescript array code example
Example 1: javascript not empty array not string
if (Array.isArray(array) && array.length) {
// array exists and is not empty
}
Example 2: array==null array.length java script
if (typeof array != "undefined" && array != null && array.length != null && array.length > 0) {
// array exists and is not empty
}