1 Star 0 Fork 0

yang5731/js-class

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
10.11.html 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
yang5731 提交于 2021-10-11 12:22 . 10.11
<!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>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yang5731/js-class.git
git@gitee.com:yang5731/js-class.git
yang5731
js-class
js-class
master

搜索帮助