why is parseint used? code example
Example: Use the parseInt Function with a Radix Javascript
function convertToInterger(myString) {
return parseInt(myString, 2); // We convert this to base 2.
}
console.log(convertToInterger("10011")); // This is a binary number.