find the third largest number in an array using javascript code example
Example: second largest number in array javascript
['20','120','111','215','54','78'].sort(function(a, b) { return b - a; })[1];
// '120'
['20','120','111','215','54','78'].sort(function(a, b) { return b - a; })[1];
// '120'