how to get string after colon in javascript?
Hi Friends 馃憢, Welcome To Infinitbility! 鉂わ笍 To get string after colon in javascript, use split() method with pop() method it will return those string which after then your colon or which you used to split the string. Let鈥檚 see short example to use split() method with pop() method to get string after colon. string.split(":").pop(); Today, I鈥檓 going to show you How do I get string after colon in javascript, as above mentioned, I鈥檓 going to use the above-mentioned split() method with pop() method....