Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save moriarty99779/d140399cd260a386dc906b7290d2ceea to your computer and use it in GitHub Desktop.
Save moriarty99779/d140399cd260a386dc906b7290d2ceea to your computer and use it in GitHub Desktop.
Javascript - Check if a MAC address is valid
const isMACAddressValid = (mac) => /^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$/.test(mac);
document.write(isValidMACAddress("AA:22:FF:04:2D"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment