Created
          November 23, 2015 03:07 
        
      - 
      
- 
        Save dmidlo/d2e565aacd40a451cd1f to your computer and use it in GitHub Desktop. 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | function truncateStr(str, num) { | |
| if(str.length > num) | |
| { | |
| if(num > 3) | |
| { | |
| str = str.slice(0,num-3)+"..."; | |
| } | |
| else | |
| { | |
| str = str.slice(0,num)+"..."; | |
| } | |
| } | |
| return(str); | |
| } | |
| truncateStr("Peter Piper picked a peck of pickled peppers", 14); | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment