Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

random js

var rand = "_" + Math.random().toString(36).substr(2, 9);
console.log(rand)

// or use this
var e = Math.random().toString(31).substring(2)
console.log(e)
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #random #js
ADD COMMENT
Topic
Name
7+3 =