Guest User

Untitled

a guest
Jan 18th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. var arrGenres = genre.split(', ');
  2. console.log(arrGenres);
  3.  
  4. for (var i = 0; i < arrGenres.length; i++) {
  5. if (arrGenres[i] === 'Comedy') {
  6. console.log('Es comedia');
  7. } else if (arrGenres[i] === 'Drama') {
  8. console.log('Es drama');
  9. } else if (arrGenres[i] === 'Action') {
  10. console.log('Es acción');
  11. }
  12. }
  13.  
  14. if (title !== 'N/A') {
  15. $('.container-genre').append('<p>' + title + '</p>');
  16. $('#movie').append($('.container-genre'));
  17. }
Add Comment
Please, Sign In to add comment