programming-examples/js/String/Strip leading and trailing spaces from a string.js
2019-11-15 12:59:38 +01:00

5 lines
200 B
JavaScript

function truncate(str, no_words) {
return str.split(" ").splice(0,no_words).join(" ");
}
console.log(truncate('The quick brown fox jumps over the lazy dog', 4));