- GIT
- HTML5
- CSS3
- BOOTSTRAP 4.5.3
- Javascript and jQuery
The application converts numbers (arabic numerals) into Roman Numerals according to each number's place of value. The convertible number range is 1-3999.
- Clone this repository to your desktop
- Navigate to the top level of the directory
- Open the index.html file in your browser.
- Describe: convertNumeral()
1 Test: "It will ensure numbers are within the range of 1-3999."
- Code: convertNumeral("-5");
- Expected Output: "Invalid"
2 Test: "It will identify numbers with roman numerals according to place values.
- Code: convertNumeral("5");
- Expected Output: "V"
3 Test: "It will return the actual converted numbers"
- Code: convertNumeral("23");
- Expected Output: "XXIII"
- None Known
MIT