how to get first 100 letter from string in javascript code example
Example 1: js only first 50 letters
'Hiya how are you'.substring(0,50);
Example 2: cut string from string javascript
var ret = "data-123".replace('data-','');
console.log(ret); //prints: 123