Lately, I love writing blogs on @hashnode. Initially I wasn't sure how to start but now I get it that process is pretty easy and straight forwardπ
Why I prefer Hashnode over other platforms?
1. You can blog at your personal domain (blog.pratham.codes) 2. You can customize your blog design entirely 3. Inbuilt community of thousands of developers 4. Personalized Newsletters
CONT...π
5. Hashnode has a great UX and UI 6. You can add many pages to your customized blog
For exampleπ
Start you blog today.
Write what you want, express what you feel. Let your words speak about youπ«
You're just one step wayπͺ Head over to Hashnode and start writing.
If you already have a Hashnode blog, share it belowπ
Some important topics of JavaScript before diving into React
A Threadπ§΅
1οΈβ£ ES6 classes
Although new developers are working with functional components, there is a possibility that you may encounter old written class component code. So it can be helpful to learn basic of ES6 class.
2οΈβ£ Basic understanding of var, let and const
You should have the basic understanding of variable declaration. When to use var, let or const. What is the block scope and stuff like that.
for example
var x = 2;
// Here x is 2
{
let x = 4;
// Here x is 4
}
// Here x is 2