How to get all the child nodes except the first child node

how to get all the child nodes except the first child node without adding any class
is like

            <ul>
                <li><a href="-sharp"></a></li>
                <li><a href="-sharp"></a></li>
                <li><a href="-sharp"></a></li>
                <li><a href="-sharp"></a></li>
                <li><a href="-sharp"></a></li>
            </ul>
            

get all the li except the first li,

Apr.05,2021

$('li:not (: first-child)')


jquery: $('li:first'). Siblings ()

)
Menu