Home > Article > Web Front-end > How to determine if an array is empty in jquery?
Jquery method to determine whether an array is empty: first use the length attribute to get the number of elements in the array object, and then determine whether the number of elements obtained is equal to 0. If it is equal to 0, the array is empty, otherwise it is not empty. ;Syntax "if (array object.length === 0) {//array is empty}".
Related recommendations: "jQuery Video"
jquery method to determine whether an array is empty
var arr = [ "xml", "html", "css", "js" ]; if(arr.length == 0){ console.log("数组为空"); }else{ console.log("数组不为空"); }
Output
jQuery length property
The length property contains the number of elements in the jQuery object
For more programming-related knowledge, please visit: Programming Learning Website! !
The above is the detailed content of How to determine if an array is empty in jquery?. For more information, please follow other related articles on the PHP Chinese website!