Fetch the repository succeeded.
<!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>Document</title>
</head>
<body>
<div id="app">my app</div>
<script>
function Parent() {
console.log('I am Parent :>> ');
}
var child_1 = new Parent();
console.log('Parent :>> ', Parent);
console.log('Parent.prototype :>> ', Parent.prototype);
console.log('child_1 :>> ', child_1);
console.log('child_1.__proto__ :>> ', child_1.__proto__);
console.log('Parent.prototype === child_1.__proto__ :>> ', Parent.prototype === child_1.__proto__);
//
//
//
//
//
//
function test() {
console.log('I am test :>> ');
}
console.log('test.__proto__ :>> ', test.__proto__);
console.log('Function.prototype :>> ', Function.prototype);
console.log('test.__proto__ === Function.prototype :>> ', test.__proto__ === Function.prototype);
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。