Quick actions

cmd+k|ctrl+k

Navigation

Languages

uuid

Snippet info

Language

JavaScript

Visibility

public

Author

subchen

Created

2016-04-12T09:29:52Z

Updated

2016-04-12T09:30:03Z

console.log(uuid());
console.log(uuid());
console.log(uuid());
console.log(uuid());

function uuid() {
    var code = 'abcdef1234567890';
    var max = code.length;
    var str = '';
    for (var i=0; i<32; i++) {
        str += code.charAt(Math.floor(Math.random() * max));
        if (i==8 || i==12 || i==16 || i==20 ) {
            str += '-';
        }
    }
    return str;
}
INFO