Skip to content

Instantly share code, notes, and snippets.

View UniBreakfast's full-sized avatar
💡
reinventing basic stuff in order to understand it better

Mykhailo "Ninin" Velykoselskyi UniBreakfast

💡
reinventing basic stuff in order to understand it better
View GitHub Profile
count = 0
maxDepth = 0
maxWidth = 0
listChildren(document.body)
// console.log({count, maxDepth, maxWidth})
function listChildren(el, depth=0) { //console.log(depth)
if (depth > maxDepth) maxDepth = depth
const tagNames = []