js string ellipsis code example
Example 1: javascript cut string if too long
if (string.length > 25) {
string = string.substring(0, 24) + "...";
}
function truncate(str, n){
return (str.length > n) ? str.substr(0, n-1) + '…' : str;
};
p {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
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));
console.log(sum.apply(null, numbers));
function sum(...numbers) {
let sum = 0;
for (const number of numbers)
sum += number;
return sum;
}
console.log(sum(1, 2, 3, 4, 5));
console.log(sum(4, 5, ...numbers));
Example 3: ellipses in js
const numbers1 = [1, 2, 3, 4, 5];
const numbers2 = [ ...numbers1, 1, 2, 6,7,8];