代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>语言基础</title>
</head>
<body>
</body>
<script>
// document.writenln("<span style='color:blue'>111111<span>")
// document.writenln("111111")
// number 型 Infinity NaN
// document.writeln("科学计数法:" + 1.4e10000)
// document.writeln("科学计数法:" + 1.4e10)
// document.writeln(1/0)
// document.writeln(0/0)
//string 型
// document.writeln("<span style=\"color:red\">11111<span>")
// document.writeln("1111111\\n222222")
//booiean 型
// document.writeln(true)
// document.writeln(-100 ==true)
// 强制类型转换
// typeof 判断当前变量值是什么类型的
// document.writeln(typeof("2222"))
// document.writeln(parseFloat("2222qwer222qwer"))
// document.writeln(true.toString())
// document.writeln((10).toString(2))
//变量声明
// var s=1
// document.writeln(typeof s)
// s="1"
// document.writeln(typeof s)
//let const
// const ip="127.0.0.1"
// document.writeln(ip)
// ip ="127.0.0.2"
// document.writeln(ip)
const a=275
document.writeln(a%10)
document.writeln((a%100-a%10)/10)
document.writeln(((a-a%100)/100))
// document.writeln(5=="5")数值
// document.writeln(5==="5")数值和类型
//let a=50
//let b=90
//document.writeln(a>b ? 'a大': a<b ? 'b大': 'a=b')
</script>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。