monospace · 8 variants · OFL-1.1 · swiss international 1960s
const greet = (name) => {
return `Hello, ${name}!`;
};
async function fetchData(url) {
const res = await fetch(url);
if (!res.ok) throw new Error(res.status);
return res.json();
}
const items = data
.filter(x => x.active)
.map(x => x.name);