Handling user inputs with forms is the most important part of your web application. React provides the mechanism to work with states with HTML forms.
Continue reading “[React] Forms”Category Archives: Web Programming
[React] Lifecycle
It is important to understand the lifecycle of an React component. You can attach the handler to each React Lifecycle. It is useful to set initial states or other tasks at the right moment.
Continue reading “[React] Lifecycle”[JavaScript] Events
Events and handlers are the basic programming model of JavaScript in web browsers. JavaScript has been evolved to provide native support for handling events, and all modern browsers support the features.
Continue reading “[JavaScript] Events”[JavaScript] Functions
In JavaScript, a function is really a unique feature. In general, you can use it as a global module. Define it and use it anywhere you want. But JavaScript functions are much more than that. Let’s find out what they are.
Continue reading “[JavaScript] Functions”[React] Props & States
React passes data between components through States and Props.
Props are read-only data that are passed from one component to another. States represent data that change over time. States can only be used in Class components, not in Function components.
Continue reading “[React] Props & States”[React] JSX &Components
React is, in short, nothing but creating UI components. You can use the JavaScript function syntax, but, in general, you are going to use JSX (JavaScript XML) syntax. JSX is a syntax extension to JavaScript. Finally, let’s check the lifecycle of React.
Continue reading “[React] JSX &Components”[React] Overview & Setup
React is a JavaScript library that is created by Facebook in 2011 in order to create a component in web applications(React DOM). It has expanded to other systems, such as mobile apps (React Native) or virtual reality (React VR).
Continue reading “[React] Overview & Setup”[JavaScript] Script & Types
This post deals with basic JavaScript features: Types, Values, and Scripting.
Continue reading “[JavaScript] Script & Types”