pull/918/merge
vedpawar2254 11 months ago committed by GitHub
commit 5795145750
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,32 @@
# Timezone Converter
**Tier**: 1-Beginner
The Timezone Converter app allows users to convert the current time in one timezone to another timezone. This app provides an intuitive way to calculate the time difference between locations worldwide, helping beginners understand basic JavaScript functions and handling of date and time values.
## Purpose
The app's purpose is to let users quickly find the time in another timezone based on their current time.
## Resources Needed
- Optional: [World Time API](http://worldtimeapi.org/) for fetching timezone data and daylight saving time adjustments.
## User Stories
- User can select a source timezone (e.g., UTC, GMT, EST, PST).
- User can select a target timezone to convert the time.
- User can view the converted time displayed in the target timezone.
- User can update the source time to see the conversion in real-time.
- User can reset the selected timezones back to default values.
## Bonus Features
- User can set a default source timezone (e.g., local timezone) that persists across sessions.
- User can add multiple target timezones to view several conversions simultaneously.
- User can view the current date along with the time for each timezone.
## Useful Links and Resources
- [MDN Date](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) - Learn about JavaScript's Date object for handling date and time.
- [World Time API](http://worldtimeapi.org/) - Provides accurate timezone data, including daylight saving adjustments.
## Example Projects
- https://dateful.com/time-zone-converter(best one)
- https://www.timeanddate.com/worldclock/converter.html
- https://www.worldtimebuddy.com/

@ -78,6 +78,7 @@ required to complete them.
| [Wind Chill](./Projects/1-Beginner/Windchill-App.md) | Calculate the windchill factor from an actual temperature | 1-Beginner | | [Wind Chill](./Projects/1-Beginner/Windchill-App.md) | Calculate the windchill factor from an actual temperature | 1-Beginner |
| [Word Frequency](./Projects/1-Beginner/Word-Frequency-App.md) | Calculate word frequency in a block of text | 1-Beginner | | [Word Frequency](./Projects/1-Beginner/Word-Frequency-App.md) | Calculate word frequency in a block of text | 1-Beginner |
| [Weather App](./Projects/1-Beginner/Weather-App.md) | Get the temperature, weather condition of a city. | 1-Beginner | | [Weather App](./Projects/1-Beginner/Weather-App.md) | Get the temperature, weather condition of a city. | 1-Beginner |
| [Time-zone converter](.Projects/1-Beginner/TimezoneConverter.md) | Convert timezones from one to another | 1-Beginner |
### Tier-2: Intermediate Projects ### Tier-2: Intermediate Projects

Loading…
Cancel
Save