I need to mask the SSN field as 123-45-6789 in React,
My aim is to do that without using plugings like react-input-mask,input-mask etc.
My input 123456789
Expected input 123-45-6789
Can we do that? By regex or something without plugings.
Any help would be appreciated.