字符串的正则表达式令人困惑

时间:2018-05-08 13:59:59

标签: javascript regex

两个正则表达式之间有什么区别吗?

  isFunctionKey(funKey) {
  return /^('funKey')|([01][1-9]|2[0-4])$/.test(funKey);
  }

 isFunctionKey(funKey) {
    return /^(funKey)|([01][1-9]|2[0-4])$/.test(funKey);
  }

提示:查看return语句funkey;一个是引号,另一个不是。

0 个答案:

没有答案