javascript shorten string ellipsis code example
Example 1: javascript cut string if too long
if (string.length > 25) {
string = string.substring(0, 24) + "...";
}
//or
function truncate(str, n){
return (str.length > n) ? str.substr(0, n-1) + '…' : str;
};
//or with CSS
p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
//or with replace
short = long.replace(/(.{7})..+/, "$1…");
Example 2: javascript ellipsis
function sum(x, y, z) {
return x + y + z;
}
const numbers = [1, 2, 3];
console.log(sum(...numbers));
// expected output: 6
console.log(sum.apply(null, numbers));
// expected output: 6
// ... can also be used in place of `arguments`
// For example, this function will add up all the arguments you give to it
function sum(...numbers) {
let sum = 0;
for (const number of numbers)
sum += number;
return sum;
}
console.log(sum(1, 2, 3, 4, 5));
// Expected output: 15
// They can also be used together, but the ... must be at the end
console.log(sum(4, 5, ...numbers));
// Expected output: 15
Example 3: ellipsis javascript
//example
function sum(x, y, z) {
return x + y + z;
}
const numbers = [1, 2, 3];
console.log(sum(...numbers));
// expected output: 6