Tell us what’s happening:
Your code so far
function truncateString(str, num) {
// Clear out that junk in your trunk
if (num >=str.length)return str;
if(num <=3)return str.slice(0,num)+"...";
return str.slice(0,num-3)+"...";
}
truncateString("A-tisket a-tasket A green and yellow basket", 8);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-algorithm-scripting/truncate-a-string/