代码拉取完成,页面将自动刷新
<!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>MyInstanceOf</title>
</head>
<body>
<script type="module">
// 第1次手写
// import myInstanceOf from './js/10_MyInstanceOf/myInstanceOf.js'
// 第2次手写
// import myInstanceOf from './js/10_MyInstanceOf/myInstanceOf1.js'
// 第3次手写
// import myInstanceOf from './js/10_MyInstanceOf/myInstanceOf2.js'
// 第4次手写
// import myInstanceOf from './js/10_MyInstanceOf/myInstanceOf3.js'
// 第5次手写
import myInstanceOf from './js/10_MyInstanceOf/myInstanceOf4.js'
let a = 1
console.log(a instanceof Object, myInstanceOf(a, Object))
let fn = () => {}
console.log(fn instanceof Function, myInstanceOf(fn, Function))
console.log(Function instanceof Object, myInstanceOf(Function, Object))
console.log(Object instanceof Object, myInstanceOf(Object, Object))
let sym = Symbol()
console.log(sym instanceof Object, myInstanceOf(sym, Object))
let obj = {}
console.log(obj instanceof Object, myInstanceOf(obj, Object))
let date = new Date()
console.log(date instanceof Object, myInstanceOf(date, Object))
let reg = new RegExp()
console.log(reg instanceof Object, myInstanceOf(reg, Object))
class Person {
constructor() {}
}
let obj1 = new Person()
console.log(obj1 instanceof Person, myInstanceOf(obj1, Person))
let obj2 = {}
console.log(obj2 instanceof 123, myInstanceOf(obj2, 123))
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。