Jjoninjoncoded.hashnode.dev·Nov 14, 2023 · 1 min readMoved to GitbookI have moved back to Gitbook (just a personal preference!)00
Jjoninjoncoded.hashnode.dev·Apr 1, 2022 · 2 min readTypeScript overviewTypeScript 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...00
Jjoninjoncoded.hashnode.dev·Dec 15, 2021 · 3 min readReact stateExample 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 ...00
Jjoninjoncoded.hashnode.dev·Dec 1, 2021 · 2 min readDeploying React sites on GitHub pagesConnecting 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...00
Jjoninjoncoded.hashnode.dev·Nov 29, 2021 · 2 min readReact propsIntro 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 ...00