Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

javascript generate uuid

const generateUuid = (): string => {
    return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, (character) => {
        const random = (Math.random() * 16) | 0;
        const value = character === "x" ? random : (random & 0x3) | 0x8;

        return value.toString(16);
    });
};
Comment

uuid 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" 
Comment

uuid javascript

    function uuid() {
        const template = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx';
        const xAndYOnly = /[xy]/g;

        return template.replace(xAndYOnly, (character) => {
            const randomNo =  Math.floor(Math.random() * 16);
            const newValue = character === 'x' ? randomNo : (randomNo & 0x3) | 0x8;

            return newValue.toString(16);
        });
    }
Comment

uuid in node js

const {v4 : uuidv4} = require('uuid')
Comment

PREVIOUS NEXT
Code Example
Javascript :: get unchecked checkbox jquery 
Javascript :: regex for 4 digit number javascript 
Javascript :: javsacript split string at position 
Javascript :: 413 payload too large nodejs 
Javascript :: how to pass token in laravel in jquery ajax 
Javascript :: get attribute href 
Javascript :: reactjs app change port 
Javascript :: concurrently script 
Javascript :: javascript wait for function to return value 
Javascript :: Form.Control textarea react bootstrap 
Javascript :: javascript location redirect 
Javascript :: go to new page javascript 
Javascript :: render html in node js 
Javascript :: jquery change value of input 
Javascript :: js check if string is integer 
Javascript :: update data firebase firestore javascript 
Javascript :: keydown event 
Javascript :: react next alias import 
Javascript :: create subcollection firestore 
Javascript :: JavaScript - How to get the extension of a filename 
Javascript :: new line in js 
Javascript :: next js fallback 
Javascript :: what is sus imposter 
Javascript :: Jquery search in json 
Javascript :: javascript phone number mask 
Javascript :: javascript check if text is overflowing 
Javascript :: react construct 
Javascript :: date of birth validation for 18 years javascript 
Javascript :: regex any letter 
Javascript :: how to find the last item in a javascript object 
ADD CONTENT
Topic
Content
Source link
Name
1+1 =