🧐 Scroll auto 🧐 javascript

                  //scrollIntoView propiedad de cualquier elemento HTML
const boton = document.querySelector('#scrolea')
const enlaces = document.querySelectorAll('.enlace')
const scrollAnimado = (elemento) =>{
    const destino = document.querySelector(elemento)
    destino.scrollIntoView({
        behavior: "smooth"
        })
}

enlaces.forEach(enlace => {
    enlace.addEventListener('click', (e)=>{
        e.preventDefault()
       scrollAnimado(enlace.getAttribute('href'))
     })
    })

boton.addEventListener('click', () =>{
    scrollAnimado('.ultimo')
})