I'm trying to build a function to generate a random uuid, I found some thing on stack and I need to understand a little bit how that function work to create it with typescript :
public generateUniqSerial() {
return 'xxxx-xxxx-xxx-xxxx'.replace(/[x]/g, function (c) {
var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);
return v.toString(16);
});
}
is that writen good in es6 and can you help to understand how that line works :
*var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);*
Aucun commentaire:
Enregistrer un commentaire