math.truncate javascript code example
Example 1: trunc number javascript
Math.trunc(number);
Example 2: truncate javascript
function truncateString(str, num) {
if (num > str.length){
return str;
} else{
str = str.substring(0,num);
return str+"...";
}
}
res = truncateString("A-tisket a-tasket A green and yellow basket", 11);
alert(res)