programming-examples/js/String/Truncate a string if it is longer than the specified number of characters.js

16 lines
538 B
JavaScript
Raw Normal View History

2019-11-15 12:59:38 +01:00
text_truncate = function(str, length, ending) {
if (length == null) {
length = 100;
}
if (ending == null) {
ending = '...';
}
if (str.length > length) {
return str.substring(0, length - ending.length) + ending;
} else {
return str;
}
};
console.log(text_truncate('We are doing JS string exercises.'))
console.log(text_truncate('We are doing JS string exercises.',19))
console.log(text_truncate('We are doing JS string exercises.',15,'!!'))