1 Star 0 Fork 24

选选停停/javascript_daily_practise

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
practise06.html 487 Bytes
一键复制 编辑 原始数据 按行查看 历史
欸嘿 提交于 2021-08-14 16:46 . commit
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>数组去重</title>
<script type="text/javascript">
var arr = [1,2,3,3,2,1,5,4,2];
var result = [];
// 遍历原数组
arr.forEach(function(temp){
var flag = true;
// 遍历新数组查找有无重复
result.forEach(function(temp2){
if(temp2 == temp)
flag = false;
})
if(flag)
result.push(temp);
})
console.log(result)
</script>
</head>
<body>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/election-stop/javascript_daily_practise.git
git@gitee.com:election-stop/javascript_daily_practise.git
election-stop
javascript_daily_practise
javascript_daily_practise
master

搜索帮助