以下Javascript代码执行后的输出结果依次是:()   &...
发布于 2022-03-03 16:44:36
以下Javascript代码执行后的输出结果依次是:()
```javascript
var tmp = {}
var A = function() {}
A.prototype = tmp
var a = new A()
A.prototype = {}
var b = Object.create(tmp)
b.constructor = A.constructor
console.log(a instanceof A)
console.log(b instanceof A)
```
```javascript
var tmp = {}
var A = function() {}
A.prototype = tmp
var a = new A()
A.prototype = {}
var b = Object.create(tmp)
b.constructor = A.constructor
console.log(a instanceof A)
console.log(b instanceof A)
```
登录后免费查看答案
关注者
0
被浏览
30