码迷,mamicode.com
首页 > 编程语言 > 详细

javascript的reverse,sort方法,concat方法

时间:2020-01-28 19:16:38      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:body   tran   http   sort   function   turn   cat   public   rev   

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Title</title>
</head>
<body>
<script>
//1.reverse,sort
var ar=[1,6,3,8,100];
// ar.reverse();
// console.log(ar);//[100, 8, 3, 6, 1]
// ar.sort(mysort);
// console.log(ar);//[1, 3, 6, 8, 100]
// function mysort(a,b) {
// return a-b;
//
// }
//2.concat方法
console.log(ar.concat(66,99))


</script>

</body>
</html>

javascript的reverse,sort方法,concat方法

标签:body   tran   http   sort   function   turn   cat   public   rev   

原文地址:https://www.cnblogs.com/startl/p/12238591.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!