The hasAttributes() method of the Element interface returns a boolean value indicating whether the current element has any attributes or not.
hasAttributes()None.
A boolean.
let foo = document.getElementById("foo");
if (foo.hasAttributes()) {
// Do something with 'foo.attributes'
}