MMayjuinmayjudev.hashnode.dev·May 8, 2022 · 1 min readReact ComponentsComponents in React are just like functions in JavaScript. Components without E6 are just like components with E6. They can be rendered, composed and extracted. Types of React Components: Functional Component / JavaScript Function In React, a functio...00
MMayjuinmayjudev.hashnode.dev·Aug 18, 2021 · 1 min readWeb ServiceWeb Service Definition Web service is a standard or protocol that facilitates data exchange in the form of XML (Extensible Markup Language) between client and server applications over the internet. Web Service Architecture The web service architectur...00
MMayjuinmayjudev.hashnode.dev·Jul 27, 2021 · 1 min readDomain Name and Uniform Resource LocatorDomain Name The address of a website is a domain name similar to the address of a house. It is made of three different parts which include server type, host name and top-level domain (tld). For example, the domain name, www.allaboutdomain.com can be ...00
MMayjuinmayjudev.hashnode.dev·May 31, 2021 · 1 min readBeginning a React CourseThere have been many days of inactivity due to work matters but I am back to share that I have decided to start a course before we go into the month of June. It is still a struggle to share content while learning but I do this as a form of inspiratio...00
MMayjuinmayjudev.hashnode.dev·May 15, 2021 · 1 min readRegular Function vs Arrow FunctionIn React, a functional components can be written in two ways: //Regular Function function FunctionName(props) { return <div />; } //OR //Arrow Function const FunctionName = (props) => { return <div />; }00