Clone and edit this document
Runkit
Runkit
home page
user forum
new notebook
clone notebook
download notebook
support & documentation
log in
sign up
new notebook
help & feedback
clone this notebook
download this notebook
Sign In
Sign Up
reactive-box simple counter
node v10.24.1
version:
master
endpoint
share
tweet
const { box, sel, expr } = require("reactive-box"); const [getCounter, setCounter] = box(0); const [getNext] = sel(() => getCounter() + 1); const increment = () => setCounter(getCounter() + 1); const [run] = expr(() => { console.log(`Counter: ${getCounter()} (next value: ${getNext()})`) }); run(); increment();
Created from: https://npm.runkit.com/reactive-box
Loading…
no comments
sign in
to comment