Getting started | Create React app
React is a popular JavaScript framework for creating front-end applications. Originally created by Facebook, it has gained popularity by allowing developers to create fast applications using an intuitive programming paradigm that ties JavaScript with an HTML-like syntax known as JSX.
Starting a new React project used to be a complicated as it involves multi-step process to setting up a build system.
Getting started | Learn "==" and "===" operators
In one word, main difference between "==" and "===" operator is that formerly compares variable by making type correction e.g. if you compare a number with a string with numeric literal, == allows that, but === doesn't allow that, because it not only checks the value but also type of two variable, if two variables are not of the same type "===" return false, while "==" return true.
Getting started | applying markdown in github
Markdown is a lightweight and easy-to-use syntax for styling all forms of writing on the GitHub platform.