Answers for "jquery check array empty"

1

if array is empty jquery

var arrayName = [];

if (arrayName.length === 0) {
    // Your code
}
Posted by: Guest on November-02-2020
6

javascript not empty array not string

if (Array.isArray(array) && array.length) {
    // array exists and is not empty
}
Posted by: Guest on April-07-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language