Generation

generate functionSat, 03 Dec 2022

create a function to scrape a website

function getData(url: string): Promise<string> { return fetch(url).then(res => res.text()); }

TypeScript
Generate More

Questions about programming?Chat with your personal AI assistant