2017年5月5日金曜日

開発環境

もっと🥒(Fizz Buzz)。

コード(Emacs)

HTML5

<pre id="output0"></pre>
<label for="n0">n = </label>
<input id="n0" min="1" step="1" type="number" value="105">
<button id="run0">run</button>
<button id="clear0">clear</button>

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

JavaScript

let input_n = document.querySelector('#n0'),
    pre0 = document.querySelector('#output0'),
    btn0 = document.querySelector('#run0'),
    btn1 = document.querySelector('#clear0'),
    p = (x) => pre0.textContent += x + '\n',
    range = (start, end, step=1) => {
        let result = [];
        for (let i = start; i < end; i += step) {
            result.push(i);
        }
        return result;
    };

let output = () => {
    pre0.textContent = '';    
    
    let n = parseInt(input_n.value, 10);

    p(
        range(1, n + 1)
            .map((i) => `${i}: ` +
                     (i % 15 === 0 ? '🥒' :
                      i % 3 === 0 ? 'ピク': 
                      i % 5 === 0 ? 'ルス' : ''))
            .join('\n')
    );
}

input_n.onchange = output;
btn0.onclick = output;
btn1.onclick = () => pre0.textContent = '';

output();
















						

0 コメント:

コメントを投稿