FreeCodeCampChina / freecodecamp.cn

FCC China open source codebase and curriculum. Learn to code and help nonprofits.

Home Page:https://fcc.asia/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

"9 or Under" is wrong ,but I can't fix it.

Glenn-Guo opened this issue · comments

Challenge Comparison with the Greater Than Or Equal To Operator has an issue.
User Agent is: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.25 Safari/537.36 Core/1.70.3730.400 QQBrowser/10.5.3805.400.
Please describe how to reproduce this issue, and include links to screenshots if possible.

My code:

function myTest(val) {
  if (val >= 20) {  // 请修改这一行
    return "20 or Over";
  }
  
  if (val >= 10) {  // 请修改这一行
    return "10 or Over";
  }

  return "9 or Under";
}

// 你可以修改这一行来测试你的代码
myTest(9.5);

Maybe it should be changed to “Under 10”