webveuje/zuoye/js/语句.md
2021-04-29 17:16:40 +08:00

18 lines
723 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 语句
* 完成jsinfo相关练习
* 判断闰年
* 根据分数划分等级(四个等级)
* 用switch完成查询水果的价格五种水果 如果不在列表里就提示未上架)
* 在弹框中输入你的工资大于等于20000显示高工资8000-20000显示中高工资小于8000显示普通工资
* 实现 fizzBuzz 函数,参数 num 与返回值的关系如下:
1、如果 num 能同时被 3 和 5 整除,返回字符串 fizzbuzz
2、如果 num 能被 3 整除,返回字符串 fizz
3、如果 num 能被 5 整除,返回字符串 buzz
4、如果参数为空或者不是 Number 类型,返回 false
5、其余情况返回参数 num
示例
输入15
输出fizzbuzz