数组去重(数组里可以嵌套数组、对象)
<script>
function equal(o1,o2){
if(o1===o2){return true;}
if(typeof(o1)!==typeof(o2)){
return false;
}
if(String(o1)!==String(o2)){
return false;
}
if(typeof(o1)===typeof([])){
// if(o1.length!==o2.length){
// return false;
// }
原创
2021-07-02 10:37:51 ·
265 阅读 ·
0 评论