From the course: Build Modern Web Apps with React, Hooks, State Management, and APIs Using Vite or Next.js
Unlock this course with a free trial
Join today to access over 25,200 courses taught by industry experts.
This keyword confusion
From the course: Build Modern Web Apps with React, Hooks, State Management, and APIs Using Vite or Next.js
This keyword confusion
Hello and welcome back. Let's resume from this keyboard confusion. In class components, this is used to refer the component instance. For example, consider this class component. We have a welcome class component, which has a constructor, which is having the props and Inside it, we are using this to refer the instance of this specific class. For example, this.state is equal to the name and then we have the handleClick function and we want to show the name state in the console. Over here that this is going to be required. Now let's discuss why this is actually confusing. Now let's discuss why this is actually confusing. We often have to bind methods manually in the constructor or use the arrow functions Or at times, we can forget to bind the results in the link, the class component and it can result into undefined. In JavaScript, you know that we have to handle this keyword very carefully because in order to not being able to bind our variables or we are manually doing something in the…
Practice while you learn with exercise files
Download the files the instructor uses to teach the course. Follow along and learn by watching, listening and practicing.
Contents
-
-
-
-
-
-
(Locked)
Introduction to hooks wrapper hell5m 56s
-
(Locked)
Complex lifecycle logic5m 11s
-
(Locked)
This keyword confusion3m 55s
-
(Locked)
useState hook6m 3s
-
(Locked)
Lazy initialization3m 58s
-
(Locked)
Managing objects8m 33s
-
(Locked)
Managing arrays: Summary4m 7s
-
(Locked)
useEffect hook: Introduction4m 6s
-
(Locked)
useEffect problem9m 24s
-
(Locked)
useEffect API calling5m 50s
-
(Locked)
useEffect dependency arrays10m 34s
-
(Locked)
useEffect cleanup function and summary5m 18s
-
(Locked)
useContext introduction3m 50s
-
(Locked)
Theme context: Implementing the provider9m 36s
-
(Locked)
Theme switcher and header component6m 26s
-
(Locked)
Use cases: Summary4m 52s
-
(Locked)
useRef introduction: DOM elements6m 47s
-
(Locked)
useRef timer example: Mutable values3m 55s
-
(Locked)
useRef common cases and comparison with useState2m 26s
-
(Locked)
useReducer introduction and syntax4m 46s
-
(Locked)
useReducer vs useState: Basic example5m 59s
-
(Locked)
useReducer status manager example14m 50s
-
(Locked)
useReducer vs Redux: Summary4m 39s
-
(Locked)
useMemo introduction6m 38s
-
(Locked)
useMemo real-world example13m 58s
-
(Locked)
useMemo dos and don'ts: Summary6m 13s
-
(Locked)
useCallback introduction3m 41s
-
(Locked)
useCallback example and understanding10m 41s
-
(Locked)
useCallback summary and pitfalls3m 17s
-
(Locked)
useImperativeHandle introduction4m 8s
-
(Locked)
useImperative example and uses5m 25s
-
(Locked)
useImperative common use case and summary4m 14s
-
(Locked)
Custom hook introduction4m 54s
-
(Locked)
Custom hook example and usage4m 55s
-
(Locked)
Custom hook design principles4m 9s
-
(Locked)
Custom hook pitfalls and summary4m 9s
-
(Locked)
-
-
-
-