Day 95/100π₯
#100DaysOfCode
5 days left.
Today was about consolidating the fundamental loop of front-end engineering: Fetch remote data, parse it, and render it to the DOM. This is the very core of building a dynamic web application.
#buildinginpublic #javascriptlearning #web
ALT A split-screen view of front-end development. The left pane shows a JavaScript file with an async function, fetchData, using await to get user data from the JSONPlaceholder API. A second function, renderData, iterates through the fetched data with forEach and dynamically creates and appends DOM elements to display the user names. The right pane shows the browser output: a simple webpage with a vertical list of the fetched names.