How to use 'javascript string line break' in JavaScript

Every line of 'javascript string line break' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
127export function newline_breaks(string) {
128 return string.replace(/(?:\r\n|\r|\n)/g, '<br />')
129}

Related snippets