I'm doing an ajax request, which returns an array of objects (date), how would I do a check on the number of objects?
Example:
Se (data retornar mais de um objeto no array){
faça isso
}senão{
faça isso
}
I'm doing an ajax request, which returns an array of objects (date), how would I do a check on the number of objects?
Example:
Se (data retornar mais de um objeto no array){
faça isso
}senão{
faça isso
}
Try this:
if (minha_array.length > 0) { //true } else { //false }