“JavaScript eindeutig ID -Generator” Code-Antworten

Zufällige 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 RAIMATION ID

Math.random().toString(36).slice(2);
Dotch

JavaScript Uniqie ID

function uuid() {
  return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
    var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);
    return v.toString(16);
  });
}

var userID=uuid();//something like: "ec0c22fa-f909-48da-92cb-db17ecdb91c5" 
Grepper

JavaScript eindeutig ID -Generator

/* unique id generator javascript */

const uuid = () => {
  const head = Date.now().toString();
  const tail = Math.random().toString().substr(2)
  
  return head + tail
}

uuid();
wardvisual

Ähnliche Antworten wie “JavaScript eindeutig ID -Generator”

Fragen ähnlich wie “JavaScript eindeutig ID -Generator”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen