I am Sagar
Work Experience
Sep 2023 - Current
Show more Exzellenz Career Shapers PVT. LTD.
Full Stack Developer- Experienced in crafting interactive web apps with React.js, Next.js, and Node.js, specializing in component-based architecture, state management, and backend development. Successfully integrated AWS S3 for uploading files and images, enhancing backend capabilities and enabling robust file management within web applications.
- Developed REST APIs using Node.js and MongoDB, providing efficient data handling and seamless integration between frontend and backend services. My solutions, including the app portal.hellomentor.in, have supported over 4,000 users, demonstrating their scalability and reliability in real-world applications.
Portfolio
Recent Explore
1 out of 3
"use strict"; /** Array Methods **/ const deleteFromEnd = (array, size) => { const index = emptyIndex(array, size); if(index === 0) { console.log("Cannot pop the value from array, Array is empty"); return; } if (index === -1) { array[size - 1] = null; } else { array[index - 1] = null; } return; }; const searchElement = (array, size, ele) => { for (let i = 0; i < size; i++) { if (array[i] === ele) return true; } return false; }; const emptyIndex = (array, size) => { for (let i = 0; i < size; i++) { if (array[i] === undefined || array[i] === null) return i; } return -1; }; const insertIntoArray = (array, size, val) => { const index = emptyIndex(array, size); if (index < 0) { console.log("Array is full"); return; } array[index] = val; }; const arrayMethods = (size) => { const array = new Array(size); insertIntoArray(array, size, 1); insertIntoArray(array, size, 2); insertIntoArray(array, size, 3); insertIntoArray(array, size, 4); insertIntoArray(array, size, 5); deleteFromEnd(array, size); insertIntoArray(array, size, 6); console.log(`Search element : ${searchElement(array, size, 4)}`); return array; }; module.exports = { arrayMethods };
Copy Code