[Solved] JS trim() function in cloudant
By definition, the trim() function will only remove leading and trailing white-space within a string, which may not be what you need in this scenario. If you want to remove all white-space in general, you could consider using a Regular Expression replacement via the replace() function: // This will remove all white-space from your input … Read more