// Get the `title` attribute of a link elementconst title = link.getAttribute('title');
// Set the width and height of an imageimage.setAttribute('width', '100px');image.setAttribute('height', '120px');
// Remove the `title` attributeele.removeAttribute('title');