en.javascript.info/1-js/4-data-structures/3-string/3-truncate/task.md
Ilya Kantor 2b874a73be ok
2016-03-09 00:16:22 +03:00

17 lines
489 B
Markdown

importance: 5
---
# Truncate the text
Create a function `truncate(str, maxlength)` that checks the length of the `str` and, if it exceeds `maxlength` -- replaces the end of `str` with the ellipsis character `"…"`, to make its length equal to `maxlength`.
The result of the function should be the truncated (if needed) string.
For instance:
```js
truncate("What I'd like to tell on this topic is:", 20) = "What I'd like to te…"
truncate("Hi everyone!", 20) = "Hi everyone!"
```