码迷,mamicode.com
首页 > 其他好文 > 详细

eslint for...in 报错处理

时间:2018-08-22 16:47:38      阅读:448      评论:0      收藏:0      [点我收藏+]

标签:div   1.0   bsp   otc   utf-8   http   src   col   char   

示例代码:

<!DOCTYPE html>
<html lang="zh">

    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <meta http-equiv="X-UA-Compatible" content="ie=edge" />
        <title>eslint for...in 报错处理</title>
    </head>

    <body>

        <script src="https://cdn.bootcss.com/lodash.js/4.17.10/lodash.min.js"></script>
        <script type="text/javascript">
            Array.prototype.contains = function(item) {
                return this.indexOf(item) >= 0
            }

            const arr = [1, 2, 3, 4]
            for(let key in arr) {
                //使用hasOwnProperty 处理一下
                if(arr.hasOwnProperty(key)) {
                    console.log(key)
                }
            }

            for(let [key, value] of Object.entries(arr)) {
                console.log(key +   + value)
            }
        </script>
    </body>

</html>

解决方法:

(1)hasOwnProperty 

(2)for of

eslint for...in 报错处理

标签:div   1.0   bsp   otc   utf-8   http   src   col   char   

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

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