I need to remove white-spaces while keeping the lines
Before:
I brought a Banana
I sold a Banana
I brought a Apple
After: NO WHITE SPACES or big space at the begining of the line
I brought a Banana
I sold a Banana
I brought a Apple
All of the tutorials removes the white space but it didn't keep me the lines so it became all the words in one line:
I need to do this because after I use the .replace method in JavaScript, I get a bunch of white spaces but need to keep the lines so I can reorder the words.