I have this array
const arr = ['1','2','3',...'30','31','LAST']
I need to sort by number ASC
Here is the example code and I don't know how to sort it. help me please
const arr2 = ['2','1','10','LAST','20']
I need result ['1','2','10','20','LAST']
instead of ['1','10','2','20','LAST']