@joncoded
developing a free and open internet
Nothing here yet.
Nothing here yet.
Apr 1, 2022 · 2 min read · TypeScript extends JavaScript to ensure that a variable's data conforms to a certain form, or "type"! Why TypeScript? TypeScript allows for easier debugging and prevents bad data from circulating through an app: also, all JavaScript works in TypeScr...
Join discussion
Dec 15, 2021 · 3 min read · Example of state In React, state refers to a special variable that stores the current situation of a component, especially after the initial return render, e.g.: A state may contain a user's "wish list of trip destinations" for a travel app During ...
Join discussion
Dec 1, 2021 · 2 min read · Connecting the local repository with the remote If we have not yet already, let us run these commands in Terminal: $ git init $ git remote origin add (remote url on github) $ git add -A $ git commit -m "pushing initial version" $ git push origin...
Join discussion
Nov 29, 2021 · 2 min read · Intro to props To make a parent component "talk" to a child component: the parent component will use a special kind of attribute or property known as props this consists of an attribute in a JSX tag the attribute can take on any key name with any ...
Join discussion