以下是您提供的JavaScript代码片段和建议的Markdown格式:

两数之间的随机数

Math.random() * (max - min) + min;

两数之间的随机整数

Math.floor(Math.random() * (max - min)) + min; // 不含最大值,含最小值

两数之间的随机整数,包括两个数在内

Math.floor(Math.random() * (100 - 10 + 1)) + 10

可以输出的地方(部分常用的)

  • document.body.innerHTML
  • document.write();

三目运算符 ?:

判断表达式 ? 真 : 假

prompt输入数字一定要

parseInt(prompt());

空格转义字符

  •  

全方大的空白

  •  

半方大的空白

  •  

Date() 获取月份一定要 +1

data.getMonth() + 1

时间小于10输出0

var date = new Date();
var hour = date.getHours() < 10 ? "0" + date.getHours(): date.getHours();
var minute = date.getMinutes() < 10 ? "0" + date.getMinutes() : date.getMinutes();
var second = date.getSeconds() < 10 ? "0" + date.getSeconds() : date.getSeconds();