Skip to content

Commit b47cf82

Browse files
authored
Merge pull request florinpop17#182 from acodedoer/master
adding currency converter app idea
2 parents 68ded2c + b4ae5d5 commit b47cf82

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Currency Converter
2+
3+
**Tier:** 2-Intermediate
4+
5+
A currency converter is used to convert an amount in one currency to its corresponding value in another currency using their current exchange rate, for example it can be used to calculate the value of 100 US Dollars in Euros. Current exchange rates are usually provided by banks and other financial service providers, they also (in some cases) offer free and paid APIs for developers to get current and historical exchange rates between two or more currencies.
6+
7+
## User Stories
8+
9+
- [ ] User can enter up to 9 digits to represent the amount to convert in a source input field
10+
- [ ] User can view a sorted list of available currencies and select the currency to convert from in a source drop-down list
11+
- [ ] User can view a sorted list of available currencies and select the currency to convert to in a destination drop-down list
12+
- [ ] User views the value (rounded to two decimal places) of the source amount converted to the destination currency in a single output field as soon as either the input value, the source currency, or the destination currency is changed.
13+
- [ ] User must be alerted if the input is not a number
14+
15+
## Bonus features
16+
17+
- [ ] User should be able to swap the values of the source and destination drop-down lists on the click of a button
18+
19+
## Useful links and resources
20+
21+
- [Free currency converter API](https://free.currencyconverterapi.com/)
22+
- [XE currency converter](https://www.xe.com/)
23+
- [How to use fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch) to fetch data
24+
25+
## Example projects
26+
- [Currency Converter](https://acodedoer.github.io/currency-converter/)
27+
- [Currency converter code](https://github.com/acodedoer/currency-converter)

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ required to complete them.
8989
| [Card Memory Game](./Projects/2-Intermediate/Card-Memory-Game.md) | Memorize and match hidden images | 2-Intermediate |
9090
| [Charity Finder App](./Projects/2-Intermediate/Charity-Finder-App.md) | Find a Global Charity to donate to | 2-Intermediate |
9191
| [Chrome Theme Extension](./Projects/2-Intermediate/Chrome-Theme-Extension.md) | Build your own chrome theme extention. | 2-Intermediate |
92+
| [Currency Converter](./Projects/2-Intermediate/Currency-Converter.md) | Convert one currency to another. | 2-Intermediate |
9293
| [Drawing App](./Projects/2-Intermediate/Drawing-App.md) | Create digital artwork on the web | 2-Intermediate |
9394
| [Emoji Translator App](./Projects/2-Intermediate/Emoji-Translator-App.md) | Translate sentences into Emoji | 2-Intermediate |
9495
| [Flashcards App](./Projects/2-Intermediate/FlashCards-App.md) | Review and test your knowledge through Flash Cards | 2-Intermediate |

0 commit comments

Comments
 (0)