本文实例讲述了JavaScript实现数字数组按照倒序排列的方法。分享给大家供大家参考。具体如下:
下面的代码演示了JS数组如何通过sort对数字类型的数组进行倒序排序
<!DOCTYPE html><html><body><p id="demo">Click the button to sort the array.</p><button onclick="myFunction()">Try it</button><script>function myFunction(){var points = [40,100,1,5,25,10];points.sort(function(a,b){return b-a});var x=document.getElementById("demo");x.innerHTML=points;}</script></body></html>
上面的代码输出结果如下
100,40,25,10,5,1
希望本文所述对大家的javascript程序设计有所帮助。
新闻热点
疑难解答