“JavaScript menghasilkan ID unik” Kode Jawaban

ID acak 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

Hasilkan ID JavaScript Unik

var uniq = 'id' + (new Date()).getTime();
Better Badger

JavaScript menghasilkan ID unik

function randomId(): string {
  const uint32 = window.crypto.getRandomValues(new Uint32Array(1))[0];
  return uint32.toString(16);
}
faisalqureshi

ID uniqie JavaScript

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

menghasilkan id js

Math.floor(Math.random() * 100)
//the bigger the number the bigger the output
Upset Unicorn

JavaScript menghasilkan ID unik

let ID = (length = 6) => {
	// new Date() will return current time
  	// getTime() method returns the number of milliseconds* since the Unix Epoch.
	// -length to get last items on string
	return new Date().getTime().toString().slice(-length);
}
aoneahsan

Jawaban yang mirip dengan “JavaScript menghasilkan ID unik”

Pertanyaan yang mirip dengan “JavaScript menghasilkan ID unik”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya