- Javascript Language
- HTML
- CSS
- Algorithm
- ReactJS basic
- Personal Experience: React Native basic
- Personal Experince : Next.js
- Mindset
- HTML: HTML Integration
- HTML: vs
- .classA vs .ClassA
- Box sizing
.divParent{
margin:0 40px;
padding:0 40px;
background-color:blue;
}
.divChildren{
width:120px;
height:120px;
background-color:green;
}<div class="divParent">
<div class="divChildren">
content 1
</div>
</div>
<div class="divParent">
<div class="divChildren">
content 2
</div>
</div>- 1: Display in 2 lines. How to display on the same line. Keep spacing between them.
- 2: Distance between divChildren(content1) and divChildren(content2)
let a; vs let A;
- Javascript Datatypes: Primitive & Non-Primitive
- Object Reference
- What is this?
- Event loop?
- Callback Function and Async
Exercises: https://jsfiddle.net/misostack/drkbgL5u/137/
// viet function generate output nhu sau, neu user nhap length = 5;
const output = ["aa", "bbb", "cccc", "dddd", "eeeee"];
const testcases = [
{
input: "aa",
output: "Empty String",
},
{
input: "abba",
output: "Empty String",
},
{
input: "cabba",
output: "c",
},
{
input: "cabbbbac",
output: "Empty String",
},
];- Props vs State
- Passing Props
- Sharing Data between components
- Hooks?
- https://user-images.githubusercontent.com/31009750/164177389-de455d69-7f4f-4578-9d98-6c711f458aef.png
- React Native - Core Components?
- React Native - CSS styles
- React Native - Navigation
- React Native - Navigation : Component A -- Component B -- back to Component A ( render lai ko ? )
- React Native - When we use ScrollView over FlatList or vice-versa
- getServerSideProps vs getStaticProps
- Route: Link vs a+href
- Shallow Routing
- API Routes?
- Middlewares
