This repository contains my solutions to the 30 Days of JavaScript study plan on LeetCode. The study plan is designed to help JavaScript developers enhance their problem-solving skills and deepen their understanding of JavaScript concepts through coding challenges.
The 30 Days of JavaScript study plan includes a variety of coding problems that range from beginner to intermediate levels. By solving these problems, participants can:
- Improve their problem-solving skills.
- Get familiar with JavaScript-specific quirks and features.
- Prepare for JavaScript-related technical interviews.
This repository will be updated as I solve more problems during the challenge.
- 2667. Create Hello World Function
Solution: A simple JavaScript function that returns a greeting string. - 2620. Counter
Solution: Implemented a counter function that increments, decrements, and resets a value. - 2704. To Be Or Not To Be
Solution: Solved a problem involving type-checking in JavaScript. - 2665. Counter II
Solution: Extended the counter function to include multiple functionalities. - 2635. Apply Transform Over Each Element in Array
Solution: Wrote a function that applies a transformation to each element in an array.