JavaScript: Truncate a string up to a specified length
JavaScript fundamental (ES6 Syntax): Exercise-117 with Solution
Truncate String to Length
Write a JavaScript program to truncate a string up to a specified length.
Note: Determine if the string's length is greater than num. Return the string truncated to the desired length, with '...' appended to the end or the original string.
- Determine if String.prototype.length is greater than num.
- Return the string truncated to the desired length, with '...' appended to the end or the original string.
Sample Solution:
JavaScript Code:
Output:
boom...
Visual Presentation:
Flowchart:

Live Demo:
For more Practice: Solve these Related Problems:
- Write a JavaScript program that truncates a string to a specified length and adds an ellipsis if it exceeds that length.
- Write a JavaScript function that shortens a string to a maximum number of characters, preserving whole words when possible.
- Write a JavaScript program that validates the string’s length and returns a truncated version if it is longer than the given limit.
Improve this sample solution and post your code through Disqus
Previous: Write a JavaScript program to check if the predicate (second argument) is truthy on all elements of a collection (first argument).
Next: Write a JavaScript program to apply a function against an accumulator and each key in the object (from left to right).
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics