Vue
HTML
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
CSS
li:not(:last-child) {
color: red;
}
.infoArea div.info:not(:first-child) .title {
margin-top: 10px;
}
JavaScript
var array1 = [1, 30, 4, 21, 100000];
array1.sort();