js 数组清空 方法 汇总
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>js清空数组的方法</title>
</head>
<body>
<script type="text/javascript">
let aa= [1,2,3,4]
// 方法一
aa.splice(0)
console.log(aa);
// 方法二
aa = [];
console.log(aa);
// 方法三
aa.length = 0;
console.log(aa);
</script>
</body>
</html>
作者:孟繁贵 Email:meng010387@126.com 期待共同进步!