1
2
3
4
5
6
7
8
9
export const create_map = (async () => {
const d3 = await import("npm:d3");
const width = 928;
const height = 1200;
const svg = d3.create("svg")
.attr("width", 500)
.attr("height", 100);
return svg;
})();
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
October 23, 2023