Add multiple classes with classlist add

Question

Hi,

Is there a way to add more than one class with the classlist.add method?

This one doesn’t work for me:

btn.classList.add('btn btn-lg');

Answer ( 1 )

    0
    2023-01-26T16:26:13+00:00

    You should use it like this:

    btn.classList.add('btn', 'btn-lg');

Leave an answer