“JS ID Generator” Respostas de código

ID aleatório JS

var ID = function () {
  // Math.random should be unique because of its seeding algorithm.
  // Convert it to base 36 (numbers + letters), and grab the first 9 characters
  // after the decimal.
  return '_' + Math.random().toString(36).substr(2, 9);
};
Diz Andriana

JS ID Generator

$ npm install uuid

const uuidv4 = require("uuid/v4")

uuidv4()
// expected: 1b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4bed
Gleaming Gazelle

JS ID Generator

//you can just use date as id
Date.now()
// returns 1576996323453
Gleaming Gazelle

Respostas semelhantes a “JS ID Generator”

Perguntas semelhantes a “JS ID Generator”

Mais respostas relacionadas para “JS ID Generator” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código