Skip to content

补全 if 条件

填空题入门

题目

填空,使 temperature 大于 30 时打印 'hot'。

代码

                  const temperature = 35;
if (temperature ___ 30) {
  console.log("hot");
}
                

相关资源

相关课程

查阅不认识的术语

新手友好的术语表用大白话解释编程术语——变量、函数、DOM、Promise 等等。

查看术语表

解读错误信息

用大白话解释常见错误——什么意思、为什么发生、如何修复。

查看错误

动手做项目

通过引导式项目应用所学,含起始代码与解决方案。

← 返回主题