“JS ID Generator” Kod odpowiedzi

Losowy id 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

Odpowiedzi podobne do “JS ID Generator”

Pytania podobne do “JS ID Generator”

Więcej pokrewnych odpowiedzi na “JS ID Generator” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu