Files
30-seconds-of-code/snippets/removeWhitespace.md
Isabelle Viktoria Maciohsek 8bf67754ce Make expertise a field
2022-03-01 20:21:45 +02:00

492 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
Remove whitespaces string,regexp beginner 2020-10-13T09:37:17+03:00 2020-11-03T21:46:13+02:00

Returns a string with whitespaces removed.

  • Use String.prototype.replace() with a regular expression to replace all occurrences of whitespace characters with an empty string.
const removeWhitespace = str => str.replace(/\s+/g, '');
removeWhitespace('Lorem ipsum.\n Dolor sit amet. ');
// 'Loremipsum.Dolorsitamet.'