2017年4月13日木曜日

開発環境

メタプログラミングRuby 第2版(Paolo Perrotta (著)、角 征典 (翻訳)、オライリージャパン)の1部(メタプログラミング Ruby)、2章(月曜日: オブジェクトモデル)、2.2(オブジェクトモデルの内部)、2.2.3(定数)を JavaScript で取り組んでみる。

HTML5

<button id="run0">run</button>
<button id="clear0">clear</button>
<pre id="output0"></pre>

<script src="sample3.js"></script>

JavaScript

let btn0 = document.querySelector('#run0'),
    btn1 = document.querySelector('#clear0'),
    pre0 = document.querySelector('#output0'),
    p = (x) => {
        pre0.textContent += x + '\n';
    };

let M = () => {
    let that = {},
        C = () => {
            let that = {};

            that.x = 'ある定数';
            
            return that;
        };

    that.C = C;

    p(that.C().x);
    return that;
};

var y = 'ルートレベルの定数';

let M1 = () => {
    let that = {},
        y = 'M1にある定数';

    that.y = y;

    p(y);
    p(window.y);
    return that;
};
let output = () => {
    p(M().C().x);
    p(M1());
};


btn0.onclick = output;
btn1.onclick = () => {
    pre0.textContent = '';
};

output();


  









						

0 コメント:

コメントを投稿