码迷,mamicode.com
首页 > 编程语言 > 详细

js 数组清空 方法 汇总

时间:2018-11-05 19:05:55      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:style   soft   text   mic   char   ros   color   col   html   

<!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 数组清空 方法 汇总

标签:style   soft   text   mic   char   ros   color   col   html   

原文地址:https://www.cnblogs.com/mengfangui/p/9910360.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!