1 Star 0 Fork 0

癫疯丶歌谣/前端牛客网面试题刷题

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Object.prototype.toString.call()220404.html 891 Bytes
一键复制 编辑 原始数据 按行查看 历史
yaojian01_ext 提交于 2022-04-05 11:53 . 修改
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Object.prototype.toString.call()</title>
</head>
<body>
<script>
// Object.prototype.toString.call(2) // "[object Number]"
// Object.prototype.toString.call('') // "[object String]"
// Object.prototype.toString.call(true) // "[object Boolean]"
// Object.prototype.toString.call(undefined) // "[object Undefined]"
// Object.prototype.toString.call(null) // "[object Null]"
// Object.prototype.toString.call(Math) // "[object Math]"
// Object.prototype.toString.call({}) // "[object Object]"
// Object.prototype.toString.call([]) // "[object Array]"
// Object.prototype.toString.call(function () {}) // "[object Function]"
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/geyaoisgeyao/geyao.git
git@gitee.com:geyaoisgeyao/geyao.git
geyaoisgeyao
geyao
前端牛客网面试题刷题
master

搜索帮助