Guest User

Untitled

a guest
Jul 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. var course = document.querySelector(".course");
  2. var courseClass = course.className;
  3. var locations = [
  4. "Berlin", "Munich", "London"
  5. ];
  6.  
  7. function addLocations () {
  8. for(var i = 0; i < locations.length; i++) {
  9. if (courseClass.includes(locations[i])) {
  10. course.innerHTML = `<h1>${locations[i]}</h1>`
  11. }
  12. }
  13. }
  14.  
  15. addLocations();
Add Comment
Please, Sign In to add comment