mirror of
https://github.com/jaandrle/deka-dom-el
synced 2024-11-22 16:55:23 +01:00
13 lines
383 B
JavaScript
13 lines
383 B
JavaScript
import { O } from "deka-dom-el/observables";
|
||
// α — `observable` represents a reactive value
|
||
const observable= O(0);
|
||
// β — just reacts on observable changes
|
||
O.on(observable, console.log);
|
||
// γ — just updates the value
|
||
const update= ()=> observable(observable()+1);
|
||
|
||
update();
|
||
const interval= 5*1000;
|
||
setTimeout(clearInterval, 10*interval,
|
||
setInterval(update, interval));
|