Skip to content

Instantly share code, notes, and snippets.

@masnagam
Created July 17, 2017 14:26
Show Gist options
  • Save masnagam/cf646b20f7f4aefa64a6ff9012d05aa2 to your computer and use it in GitHub Desktop.
Save masnagam/cf646b20f7f4aefa64a6ff9012d05aa2 to your computer and use it in GitHub Desktop.
'use strict';
function getDepth(element, depth) {
let maxDepth = depth;
for (let i = 0; i < element.children.length; ++i) {
let childDepth = getDepth(element.children[i], depth + 1);
if (maxDepth < childDepth) {
maxDepth = childDepth;
}
}
return maxDepth;
}
return getDepth(document.documentElement, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment