1var string = "ABCDEFG";
2var truncString = string.substring(0, 3); //Only keep the first 3 characters
3console.log(truncString); //output: "ABC"
1var length = 3;
2var myString = "ABCDEFG";
3var myTruncatedString = myString.substring(0,length);
4// The value of myTruncatedString is "ABC"
5
1_.truncate('hi-diddly-ho there, neighborino');
2// => 'hi-diddly-ho there, neighbo...'
3
4_.truncate('hi-diddly-ho there, neighborino', { 'length': 24, 'separator': ' '});
5// => 'hi-diddly-ho there,...'
6
7_.truncate('hi-diddly-ho there, neighborino', { 'length': 24, 'separator': /,? +/});
8// => 'hi-diddly-ho there...'
9
10_.truncate('hi-diddly-ho there, neighborino', { 'omission': ' [...]'});
11// => 'hi-diddly-ho there, neig [...]'