Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save manniru/ad8e53280c8dbf0094e96e23b8501d3c to your computer and use it in GitHub Desktop.

Select an option

Save manniru/ad8e53280c8dbf0094e96e23b8501d3c to your computer and use it in GitHub Desktop.
NodeJS Generate Random Mac Address for Testing
var mac = "XX:XX:XX:XX:XX:XX".replace(/X/g, () => { return "0123456789ABCDEF".charAt(Math.floor(Math.random() * 16)) })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment