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
10
11
import { expect } from "https://deno.land/x/expect@v0.4.0/mod.ts";
const sum = (sum, current) => sum + current;
const firstStar = (input: string) => {
return "?";
};
const secondStar = (input: string) => {
return "?";
};
expect(firstStar("")).toBe("?");
expect(firstStar("")).toBe("a");
December 4, 2023