Redundant Variable 多余变量

问题场景

在码代码(ReactNative)的时候, 写了如下这么一个方法

  // https转http
  _convertToHttp(iconURLString) {
     
    const resultIconURLString = iconURLString.replace('https', 'http');
    return resultIconURLString;
  }

插件ESLint提示:
在这里插入图片描述

提示: Local variable ‘resultIconURLString’ is redundant.
提供的快速修复: Inline variable. (内联变量) -> 听起来好专业的样子, 感觉就快听不懂了呢?

你可能感兴趣的:(编码规范,设计模式,编码规范)