Files
JS/03_dom/uebungen/u10_running-lights/assets/js/main.js
Philippe Torrel a78c7aa1be
2026-07-15 14:11:18 +02:00

21 lines
353 B
JavaScript

'use strict';
(() => {
// === DOM & VARS =======
const DOM = {};
const LIGHT_PATH_ON = 'assets/img/light_on.png';
const LIGHT_PATH_OFF = 'assets/img/light_off.png';
// === INIT =============
const init = () => {};
// === EVENTHANDLER =====
// === XHR/FETCH ========
// === FUNCTIONS ========
init();
})();