JavaScript
JavaScript Array(数组) 对象
数字排序(按数字顺序升序)- sort()
源代码:
点击运行 »
<p id="demo">单击按钮升序排列数组。</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { var points = [40, 100, 1, 5, 25, 10]; points.sort(function(a, b) { return a - b }); var x = document.getElementById("demo"); x.innerHTML = points; } </script>
运行结果:
点击运行 »