LoginSignup
0
0

More than 1 year has passed since last update.

Convert Es5 to ES6 javascript.

Posted at

Arrow Functions

Convert Es5 to ES6 javascript.

let slideIndex = 1; 
showSlides(slideIndex);

let plusSlides = (n) => showSlides(slideIndex += n);

let currentSlide = (n) =>  showSlides(slideIndex = n);

function showSlides(n) {
   let i;
   let slides = document.getElementsByClassName("mySlides");
   let dots = document.getElementsByClassName("dot");
   if (n > slides.length) {slideIndex = 1}
       if (n < 1) {slideIndex = slides.length}
   for (i = 0; i < slides.length; i++) {
     slides[i].style.display = "none";
     }
   for (i = 0; i < dots.length; i++) {
     dots[i].className = dots[i].className.replace(" active", "");
   }
   slides[slideIndex-1].style.display = "block";
     dots[slideIndex-1].className += " active";
}
0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0