I need a function that tells you when an array is empty. But the way I tried to do it is not right, can anyone help me?
function validaCampo(){
if(count(dias[])==0)
{
alert("O Campo Dias disponíveis é obrigatório!");
return false;
}
else
return true;
}