I am trying to create a code to iterate through a save code, and I think it’ll be something like this :
Username;Password;Points
How can I split the above text into a list like this : [Username, Password, Points]
,everytime it finds a semicolon using Javascript?
Thanks in advance :)