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
import { getTopTenBattingAverage } from "https://esm.town/v/Joelsrubin/redSpoonbill";
import { email } from "https://esm.town/v/std/email";
const list = await getTopTenBattingAverage();
await email({ subject: "Baseball Batting Average Leaderboard", text: `${list}` });
}
April 26, 2024