js 数组清空 方法 汇总
Posted mengfangui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>
以上是关于js 数组清空 方法 汇总的主要内容,如果未能解决你的问题,请参考以下文章