“Use a função de parseint com uma radix” Respostas de código

Use a função de parseint com uma radix

function convertToInteger(str) {

  var conversor = parseInt(str, 2);

  return conversor;

}

convertToInteger("10011");
Terrible Trout

Use a função Parseint com um JavaScript Radix


function convertToInterger(myString) {

  return parseInt(myString, 2); // We convert this to base 2.
}

console.log(convertToInterger("10011")); // This is a binary number.
Tony Harris

Respostas semelhantes a “Use a função de parseint com uma radix”

Perguntas semelhantes a “Use a função de parseint com uma radix”

Procure respostas de código populares por idioma

Procurar outros idiomas de código