0
[JS] How can I shorten a response length?
Hi, so lets say I have a response that ranges between (200 characters and 9000 characters) I want it to always console log 1950 or less, if it's more than 1950 I want it to only show the first 1950 characters. Is that possible in JavaScript?
3 Answers
+ 1
You have to replace the console.log function keeping yourself a string buffer which output at max 1950 chars
+ 1
Here a fast example https://code.sololearn.com/WeRgoe9rC56S/
0
How do I do the "outputs max 1950 chars", that's the question