1. JavaScript / Говнокод #21541

    −50

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    const el = document.getElementById('col');
    let iterator = next();
    function* next() {
    const arr = ["green", "blue", "red", "orange"];
      for (var i = 0; i <= arr.length;) {
        yield arr[i++];
      }
    }
    (function newBackground() {
      el.style.background = iterator.next().value;
      setTimeout(newBackground, 1000);
    }());

    Запостил: AjiTae, 22 Октября 2016

    Комментарии (4) RSS

    Добавить комментарий