How to check if a string is a valid IPv6 address in JavaScript?
Originally Published Here ๐!
To check if a string is a valid IPv6 address in JavaScript, we can use a regex expression to match for the allowed number range in each of the eight address sections.
TL;DR
// Regular expression to check if string is a I...
melvingeorge-me.hashnode.dev2 min read