KPkaushalendra pandeyinitskaush.hashnode.dev·Sep 29, 2021 · 3 min readCors...CORS or Cross-Origin Resource Sharing is the mechanism that allows websites from different origins or different URLs to communicate or share resources with each other. If you have been doing development for some time or if you ever tried to communica...00
KPkaushalendra pandeyinitskaush.hashnode.dev·Sep 8, 2021 · 4 min readCopy Constructors in C++In this blog, we are going to learn about Copy Constructors. I hope you have read my previous blog on Constructor. Copy constructors are constructors which are used to create an object as a copy of another object. Making a copy constructor: Cars(...00
KPkaushalendra pandeyinitskaush.hashnode.dev·Aug 24, 2021 · 3 min readConstructors in C++Object-Oriented Programming is a paradigm of programming which is based on the concepts of "Objects". It is a style of programming that revolves around data or objects rather than function and logic. We have a "Class" which resembles a real-world en...00
KPkaushalendra pandeyinitskaush.hashnode.dev·Aug 22, 2021 · 2 min readDoing things without ReactEveryone who has been working with REACT has come across a situation where he needs to render the same component for so many items. For example, import Card from "./Components/Cards" export default function App() { const arr = [1,2,3,4,5,6] ret...00
KPkaushalendra pandeyinitskaush.hashnode.dev·Aug 18, 2021 · 3 min readSweetalerts - Beautiful AlertsAlerts have been a major part of a developer's life. Be it from testing code flow in the development or telling a user that he has entered a wrong password in production, alerts have come a long way. But with an alert, comes the great problem: Styli...00