NFC id gen

Probably not perfect, but a fun exercise.

by alexdresko

HTML

<pre id="result">

</pre>

JavaScript

$("#result").text((Array(10).fill()).map(function() { return (Array(7).fill()).map(function () { return (Math.floor(Math.random() * 256) + 16).toString(16) }).join(":") }).join("\r\n"));