Modifying HTML Content and Attributes

What's the best practice for working with data attributes?
const span = document.createElement('span');
span.dataset.userId = '123';
span.setAttribute('data-user-id', '123');
Next Question (16/20)