In javascript, If i have a text block like so
Line 1 Line 2 Line 3
What would i need to do to lets say delete the first line and turn it in
var firstLineRemovedString = aString.replace(/.*/, "").substr(1);