value to roman integer online code example
Example 1: roman numerals converter table embed
function convertToRoman() {
let arabic = document.getElementById('arabicNumeral').value; // input value
let roman = ''; // variable that will hold the result
}
Example 2: roman numerals converter table embed
if (/^(0|[1-9]\d*)$/.test(arabic)) {
// Regular expression tests
if (arabic == 0) {
// for decimal points and negative
outputField.innerHTML = "Nulla"; // signs
} else if (arabic != 0) {
for (let i = 0; i < arabicArray.length; i++) {
while (arabicArray[i] <= arabic) {
roman += romanArray[i];
arabic -= arabicArray[i];
}
}
outputField.innerHTML = roman;
}
} else {
outputField.innerHTML =
"Please enter non negative integers only. No decimal points.";
}