1 Star 2 Fork 2

eogee/JS入门教程

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test11.html 933 Bytes
一键复制 编辑 原始数据 按行查看 历史
eogee 提交于 2022-06-03 08:01 . 11-13讲义及源码
<!DOCTYPE html>
<html>
<head>
<title>11Javascript数据类型转换</title>
<meta charset="UTf-8">
</head>
<body>
<h1>11Javascript数据类型转换</h1>
<script>
//typeof 操作符
document.write(typeof "john");
var x = 3.14;
document.write(typeof x);
var cars = Array();
cars[0] = "BYD";
cars[1] = "BENZ";
document.write(typeof cars);//返回object 类型
document.write(x.constructor);
function isArray(myArray){ //使用constructor来判定对象中是否包括数组的内容
return myArray.constructor.toString().indexOf("Array")>-1;
}
document.write(isArray(cars));
//类型转换
y = String (x);
document.write (typeof y);
y = Number (y);
document.write (typeof y);
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/eogee/js.git
[email protected]:eogee/js.git
eogee
js
JS入门教程
master

搜索帮助