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

js 数组去重复

时间:2015-04-26 22:48:08      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<script type="text/javascript">
	window.onload = function (){
		var arr = [11,13,22,11,5,13,7];

		function show(arr){
			var result = [ arr[0] ];
			for(var i = 0; i < arr.length; i++){
				if( toCon(arr[i]) ){
					result.push(arr[i]);
				}
			}

			function toCon(){
				for(var i = 0; i < result.length; i++){
					if( num == result [i]){
						result false;
					}
				}
				return true
			}
			return result;
		}

		console.log(show( arr ));
		
	}
	</script>>
</head>
<body>
	
</body>
</html>

  

js 数组去重复

标签:

原文地址:http://www.cnblogs.com/mayufo/p/4458522.html

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