Cuente todos los elementos dentro del segundo lugar usando jQuery

        let count = $("ul li ul").children().length;
        alert("Total Length of li in 2nd ul is" + count);
AbubakarShf