継承について学んでいる中で疑問に思ったことがあるので教えてください。
console.dir(String);とデベロッパーツールでprototypeを確認してみたところ、
その中にStringのメソッドが確認できました。
このprototypeと同階層に[[Prototype]]とありますが、同じ名前で混乱してしまいました。こちらは何のためにあるのでしょうか?
また、以下のようにchildオブジェクトにParentオブジェクトを継承後、コンソール画面でchildオブジェクトの
prototypeを確認しようと見ると[[Prototype]]となっていました。予想だとprototypeになると思っていたのですが、
違いが分かれば教えて頂きたいです。
よろしくおねがいします。
html
1<!DOCTYPE html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge" /> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 7 <title>Document</title> 8 <link rel="stylesheet" href="../css/html5reset-1.6.1.css" /> 9 <link rel="stylesheet" href="../css/all.min.css" /> 10 <link rel="stylesheet" href="../css/style.css" /> 11 </head> 12 <body> 13 <script src="../js/main.js"></script> 14 </body> 15</html>
js
1// Parentクラスの作成 2function Parent() {} 3 4// Parentクラスのインスタントメソッド 5Parent.prototype.hello = function () { 6 console.log("hello"); 7}; 8 9// Childクラスの作成 10function Child() {} 11 12// Parentクラスから継承 13Child.prototype = new Parent(); 14 15// Childクラスのインスタンス 16const child = new Child(); 17 18console.dir(child);
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/04 12:14