Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. const cutTitle = (result) => {
  2. if (result.length > 17) {
  3. let srt = result;
  4. let strTitle = srt.substring(0, 17)
  5. return strTitle + "..."
  6. } else {
  7. return result
  8. }
  9. }
  10.  
  11. resutl = `<h1>${cutTitle(movie.title)} </h1>`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement