“Generador de texto aleatorio JS” Código de respuesta

Generador de texto aleatorio JS

function makeid(length) {
    var result           = [];
    var characters       = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
    var charactersLength = characters.length;
    for ( var i = 0; i < length; i++ ) {
      result.push(characters.charAt(Math.floor(Math.random() * 
 charactersLength)));
   }
   return result.join('');
}

console.log(makeid(5));
Calm Crocodile

Cómo generar carácter aleatorio a partir de una matriz js

function makeid() {
  var text = "";
  var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";

  for (var i = 0; i < 5; i++)
    text += possible.charAt(Math.floor(Math.random() * possible.length));

  return text;
}

console.log(makeid());
Sleepy Shrike

Respuestas similares a “Generador de texto aleatorio JS”

Preguntas similares a “Generador de texto aleatorio JS”

Más respuestas relacionadas con “Generador de texto aleatorio JS” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código