S
S
Stepan Panov2018-03-10 16:58:32
JavaScript
Stepan Panov, 2018-03-10 16:58:32

How to sort an array of dates?

ascending/descending (new/old), string elements
for example, there is an array Get: first new: old:
date= ["2018-03-15", "2010-02-11", "2012-03-15"]
["2018-03-15", "2012-03-15", "2010-02-11"]
[ "2010-02-11", "2012-03-15", "2018-03-15"]

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Arthur, 2018-03-10
@ART_CORP

date= ["2018-03-15", "2010-02-11", "2012-03-15"];
alert(date.sort());

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question