Notifications
Clear all
BugOverflow
1
Posty
1
Users
0
Reactions
455
Widok
0
23/05/2023 10:11 pm
Topic starter
how to prevent from "comma" separated words during map object?
1 Answer
0
23/05/2023 10:13 pm
Topic starter
add .join("") to map() method like in this code below
chatToSolidText() { let solidText = ""; solidText = solidText + this.chatEntries.map( entry => "bla bla bla" ).join(""); return solidText; }