<html>
<head>
<title>Lodash-Working Example</title>
<script type = "text/JavaScript" src = "https://cdn.jsdelivr.net/npm/lodash@4.17.20/lodash.min.js"></script>
<style>
div {
border: solid 1px #ccc;
padding:10px;
font-family: "Segoe UI",Arial,sans-serif;
width: 50%;
}
</style>
</head>
<body>
<div style = "font-size:25px" id = "list"></div>
<script type = "text/JavaScript">
// 去重
const arr = [1, 1, 2, 3, 3, 4, 5];
console.log(_.uniq(arr)); // [1, 2, 3, 4, 5]
</script>
</body>
</html>
js 引入lodash.js调用其方法demo 例子
于 2023-08-11 23:15:34 首次发布