Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
import { counter } from "https://esm.town/v/ae_play/counter";
import { setCounter } from "https://esm.town/v/ae_play/setCounter";
export function counterTest() {
setCounter(c => c + 1);
console.log(counter);
}
October 23, 2023