JS优化if...else
最近公司要求优化之前项目的代码,去掉if…else…之类的。情况一: if (this.devstate == 1) { this.functionTag = "AA"; this.strValue = 1; } else if (this.devstate == 2) { this.functionTag = "AA"; this.strValue = 0; } else i