- From: Michał Gołębiowski <notifications@github.com>
- Date: Sun, 10 Apr 2016 12:31:57 -0700
- To: whatwg/dom <dom@noreply.github.com>
Received on Sunday, 10 April 2016 19:32:27 UTC
@ArkadiuszMichalski ```js var el = document.createElement("div"); el.classList = " a a b "; console.log(el.className.length); // 3 console.log(el.classList.length); // 2 console.log(el.attributes[0].value); // "a b " console.log(Array.prototype.slice.call(el.classList).join(" ")); // "a b" ``` --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/dom/issues/201#issuecomment-208048613
Received on Sunday, 10 April 2016 19:32:27 UTC