Answers for "replace all newlines with \n js"

2

javascript replace \n

var r = "I\nam\nhere";
var s = r.replace(/\n/g,' ');
Posted by: Guest on June-24-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language