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
8
9
import { comments } from "https://www.val.town/v/coreyallen/comments";
export const appendToComments = (
// the Run API accepts any number of JSON-encoded args
// here we accept a single arg
data: any,
) => {
comments.push(data);
};
December 14, 2023