I am a newly qualified full stack developer with a strong foundation in both front-end and back-end technologies. I have successfully completed the full front-end projects, and I have recently finished learning Node.js and Express.js for back-end development.
Nothing here yet.
Dec 4, 2024 · 7 min read · 1. Pointers: Definition and Declaration Definition:A pointer is a variable that stores the memory address of another variable. Instead of holding a direct data value (like an integer or float), it holds the address of where the data is stored in memo...
Join discussion
Nov 26, 2024 · 3 min read · 1. Introduction to Programming Programming is the process of creating a set of instructions that tell a computer how to perform specific tasks. It involves writing code using various programming languages like C, Python, Java, and more. 2. Introducti...
Join discussion
Nov 8, 2024 · 1 min read · What is the Difference between var and const ? var: Allows you to reassign and has function-level scope, so it’s accessible outside blocks (which can cause bugs). (var is like a toy you can share everywhere in the house, and you can change what to...
Join discussion
Sep 18, 2024 · 4 min read · How to do CRUD operations in Redux ⏰ Initial Setup for Redux Step 1 : Create reducer folder and inside index.js file combine all the reducers import {combineReducers} from 'redux' import blogs from './blogs' const rootReducer = combineReducers({ ...
Join discussion