I have this string
\'john smith~123 Street~Apt 4~New York~NY~12345\'
Using JavaScript, what is the fastest way to parse this into
Use this code --
function myFunction() { var str = "How are you doing today?"; var res = str.split("/"); }