As crazy how it sounds, how do we give 'commas' an alias in javascript?
for example when we have something like this:
Normal version: functionCall(send, country);
Alias version: functionCall(send TO country);
The above is just an example and I am very curious on how I could achieve something like this. I got inspired by PHP sql queries.
This may seem redundant but it does help readability and gives more meaning to the comma depending on the context.
EDIT: Working with regex could do the job I guess.