#beginners
Read more stories on Hashnode
Articles with this tag
Let's see what reactjs.org has to say:As your app grows, you can catch a lot of bugs with typechecking. React has some built-in typechecking...
Although we can make web apps using JavaScript. One of the reasons we are using react over JS is component reusability. What is component reusability:...
Till now I was practicing react on codesandbox. Since I am familiar with VSCode and its integration with git, I thought why not run react in VSCode...
There may be some confusion as what we are calling sibling. So, let's first get that out of the way. See the below code: <!DOCTYPE html> <html...
Let's see what MDN has to say: Spread syntax (...) allows an iterable such as an array expression or string to be expanded in places where zero or...
The rest parameter is introduced in ES6. It allows a function to accept an indefinite number of arguments as an array that is we can call a function...