vue-cli - 请教一个Javascript的问题

 政庆雅竹8 发布于 2022-11-18 08:38
var a=1, b=1, c=1;

现在使用了eslint 插件,直接这样比较的话eslint会报错,

a == b == c (true 期望结果)

// eslint报错信息

error  eqeqeq  Expected '===' and instead saw '=='  

但是替换成这样,类型又不对了

a === b === c (false b === c 会返回 true ) 

请问有什么好的办法解决么?

.eslintrc配置

module.exports = {
  root: true,
  // https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
  extends: 'standard',
  // required to lint *.vue files
  plugins: [
    'html'
  ],
  // add your custom rules here
  'rules': {
    // allow paren-less arrow functions
    'arrow-parens': 0,
    // allow debugger during development
    'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
  }
}
4 个回答
  • a === b === c 
    //执行顺序是
    a===b //true
    true===c //false
    2022-11-18 10:32 回答
  • 对啊,为什么要三个连着

    2022-11-18 10:32 回答
  • 三个不能连着用吧啊
    你的a===b返回布尔值
    再来个boolean === c 你觉得会返回true吗

    2022-11-18 10:32 回答
  • a===b && b===c
    2022-11-18 10:32 回答
撰写答案
今天,你开发时遇到什么问题呢?
立即提问
热门标签
PHP1.CN | 中国最专业的PHP中文社区 | PNG素材下载 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有