Sorts the string elements of an array in descending order.
<pre> let original = ["Alpha", "Beta"]; let result = ["Beta", "Alpha"];expect(sortStringsDescending(original)).to.eql(result);</pre> Copy
<pre> let original = ["Alpha", "Beta"]; let result = ["Beta", "Alpha"];expect(sortStringsDescending(original)).to.eql(result);</pre>
Generated using TypeDoc
Sorts the string elements of an array in descending order.