why javascript array empty string 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 empty strings
var n = 1000;
Array(n).join(".").split("."); // now contains n empty strings.