開発環境
- macOS Sierra - Apple (OS)
- Emacs (Text Editor)
- JavaScript (プログラミング言語)
- Node.js, Safari(JavaScript エンジン)
- Learning JavaScript [邦訳](参考書籍)
メタプログラミングRuby 第2版(Paolo Perrotta (著)、角 征典 (翻訳)、オライリージャパン)の1部(メタプログラミング Ruby)、5章(木曜日: クラス定義)、5.2(クイズ: クラスのタブー)を JavaScript で取り組んでみる。
HTML5
<pre id="output0"></pre> <button id="run0">run</button> <button id="clear0">clear</button> <script src="sample2.js"></script>
JavaScript
let btn0 = document.querySelector('#run0'),
btn1 = document.querySelector('#clear0'),
pre0 = document.querySelector('#output0'),
p = (x) => pre0.textContent += x + '\n';
let MyClass1 = () => {
let that = {},
myMethod = () => 'Hello!';
that.myMethod = myMethod;
return that;
};
let c = (() => () => {
let that = {},
myMethod = () => 'Hello!';
that.myMethod = myMethod;
return that;
})();
let MyClass2 = c;
let output = () => {
let c1 = MyClass1(),
c2 = MyClass2();
p(c1.myMethod());
p(c2.myMethod());
};
btn0.onclick = output;
btn1.onclick = () => pre0.textContent = '';
output();
0 コメント:
コメントを投稿