開発環境
- macOS Sierra - Apple (OS)
- Emacs (Text Editor)
- JavaScript (プログラミング言語)
- Node.js, Safari(JavaScript エンジン)
- Learning JavaScript [邦訳](参考書籍)
メタプログラミングRuby 第2版(Paolo Perrotta (著)、角 征典 (翻訳)、オライリージャパン)の1部(メタプログラミング Ruby)、5章(木曜日: クラス定義)、5.5(クイズ: モジュールの不具合)、5.5.1(クイズの答え)、クラスメソッドと include 、Object#extend を JavaScript で取り組んでみる。
HTML5
<pre id="output0"></pre> <button id="run0">run</button> <button id="clear0">clear</button> <script src="sample5.js"></script>
JavaScript
let btn0 = document.querySelector('#run0'),
btn1 = document.querySelector('#clear0'),
pre0 = document.querySelector('#output0'),
p = (x) => pre0.textContent += x + '\n';
let MyModule = () => {
let that = {},
myMethod = () => 'hello';
that.myMethod = myMethod;
return that;
};
let MyClass = () => {
let that = {};
return that;
};
let extend = (obj1, obj2) => {
Object.keys(obj2).forEach((key) => obj1[key] = obj2[key]);
};
((obj) => {
Object.keys(obj).forEach((key) => MyClass[key] = obj[key]);
})(MyModule());
let MyClass1 = () => {
let that = {};
return that;
};
Object.prototype.extend = function (obj) {
Object.keys(obj).forEach((key) => this[key] = obj[key]);
};
let output = () => {
p('5.5 クイズ: モジュールの不具合');
p(MyClass.myMethod());
p('クラスメソッドと include');
let obj = {};
((o) => {
Object.keys(o)
.forEach((key) => obj[key] = o[key]);
})(MyModule());
p(obj.myMethod());
p('Object#extend');
obj = {};
obj.extend(MyModule());
p(obj.myMethod());
MyClass1.extend(MyModule());
p(MyClass1.myMethod());
};
btn0.onclick = output;
btn1.onclick = () => pre0.textContent = '';
output();
0 コメント:
コメントを投稿