Peter
Rất tiếc, mục này chỉ tồn tại ở Tiếng Anh (Mỹ). For the sake of viewer convenience, the content is shown below in the alternative language. You may click the link to switch the active language. I’ve worked my way through a few django tutorials and videos and decided that […]
(English) Medium Clone Part 1: User Registration
Rất tiếc, mục này chỉ tồn tại ở Tiếng Anh (Mỹ). For the sake of viewer convenience, the content is shown below in the alternative language. You may click the link to switch the active language. So I finished the course! The last couple of lessons weren’t too much to […]
(English) Understanding JS Notes 08: Making your own framework
Rất tiếc, mục này chỉ tồn tại ở Tiếng Anh (Mỹ). For the sake of viewer convenience, the content is shown below in the alternative language. You may click the link to switch the active language. So I was working through a random project using react and trying to get […]
(English) Reading other people’s code: Infinity Scroll demo
Rất tiếc, mục này chỉ tồn tại ở Tiếng Anh (Mỹ). For the sake of viewer convenience, the content is shown below in the alternative language. You may click the link to switch the active language. Initialization Nothing big hear. Just talking through having large bits of data initialized and […]
(English) Understanding JS Notes 07 – Odds and Ends

Today we’re going to focus on types and operators. Dynamic typing: JS figures out what type of data a variable holds while it’s running. You don’t tell it what kind of data it is. Static typing: languages like Java/C# use static typing, where you tell the language what kind of […]
Understanding JS: Notes 3 (Types and Operators)

Rất tiếc, mục này chỉ tồn tại ở Tiếng Anh (Mỹ). For the sake of viewer convenience, the content is shown below in the alternative language. You may click the link to switch the active language. JS was built buy a guy named Brendan Eich, and he called it JavaScript […]
(English) Understanding JS: Notes 06 (Building Objects)

Rất tiếc, mục này chỉ tồn tại ở Tiếng Anh (Mỹ). For the sake of viewer convenience, the content is shown below in the alternative language. You may click the link to switch the active language. Conceptual Aside – Classical vs Prototypal Inheritance Inheritance: One object gets access to the […]
(English) Understanding JS: Notes 05 (Object-Oriented Javascript and Prototypal Inheritance)

Computed member access operator aka []: person[‘firstname’] Member access operator aka dot . operator: person.firstname Object literals: using {} to define a new object (this is the preferred way rather than using new Object) Framework aside Namespace: a container for variables and functions, typically to keep variables and functions with […]
Understanding JS: Notes 4 (Objects and Functions)

Rất tiếc, mục này chỉ tồn tại ở Tiếng Anh (Mỹ). For the sake of viewer convenience, the content is shown below in the alternative language. You may click the link to switch the active language. So last time I thought I was almost done with the code, but I […]