How to check if a string is a valid MD5 hash in JavaScript?
Originally Published Here ๐!
To check if a string is a valid MD5 hash in JavaScript, we can use a regex expression to match for the 32 consecutive hexadecimal digits which are characters from a-f and numbers from 0-9.
TL;DR
// Regular expression to ...
melvingeorge-me.hashnode.dev2 min read