Public
Script
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 { fetchCat } from "https://esm.town/v/cole/fetchCat";
export let dailyCat = async () => {
const url = fetchCat();
const html = `Here's a random cat: <img src="${url}">`;
console.email({ html }, "random cat");
};
October 23, 2023