Convert callback-based code to Promises and Async/Await.
- Refactor an existing piece of code that uses callbacks for async operations to use Promises and Async/Await for better readability and error handling.
This is a Node.js project that demonstrates refactoring code from callbacks to Promises and Async/Await for better readability and error handling.
callback.js
: Original callback-based implementationindex.js
: Refactored implementation using Promises and Async/Await
- Node.js installed
- Clone the repository:
git clone https://github.com/Anupam-03/Week-3_Assignment_Celebal-Summer-Internship.git cd Week-3_Assignment