Skip to content

Instantly share code, notes, and snippets.

@muraray
Created September 27, 2017 09:16
Show Gist options
  • Save muraray/8b62e8a853a21baf2c117c0240114adf to your computer and use it in GitHub Desktop.
Save muraray/8b62e8a853a21baf2c117c0240114adf to your computer and use it in GitHub Desktop.
function GenerateMAC(){
var hexDigits = "0123456789ABCDEF";
var macAdd = "";
for (var i = 0; i < 6; i++) {
macAdd += hexDigits.charAt(Math.round(Math.random() * 15));
macAdd += hexDigits.charAt(Math.round(Math.random() * 15));
if (i != 5) macAdd += ":";
}
return macAdd;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment