str.removeWhitespaces()

// ๐Ÿ”ธ str.removeWhitespaces()
String.prototype.removeWhitespaces = function() {
    return this.replace(/\s+/g, '');
};

๐Ÿ’ˆ็ฏ„ไพ‹๏ผš

// multi-line string
let str = `
as     void     async     while
`;

str.removeWhitespaces()    // "asvoidasyncwhile"

Last updated