Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Angelic Sanoy
Angelic Sanoy
6,149 Points

openLevel and closeLevel Means? Wrap inside the function

I've implement this code on our This is an blog post to create a dynamic table of content page. This code are coming stackoverflow.

Mostly, I understand what's the code all about but I'm curious what doesn't tr, openLevel, titleText, closeLevel means that is wrap into function.

function (str, openLevel, titleText, closeLevel) {
if (openLevel != closeLevel) {
c.log(openLevel)
return str + ‘ – ‘ + openLevel;
}

Help! I'm really practicing to understand what I am copy/pasting in the web.

Trigger of the script is the #contents

<div id=”contents”> Blog post here with all the headings</div>
<div id=”console”>&nbsp;</div>
<div id=”toc” class=”toc1″>
<h3>Table Of Contents</h3>
</div>
var c = function() {
return({
log: function(msg) {
consoleDiv = document.getElementById(‘console’);
para = document.createElement(‘p’);
text = document.createTextNode(msg);
para.appendChild(text);
consoleDiv.appendChild(para);
}
});
}();

window.onload = function () {
var toc = “”;
var level = 0;
var maxLevel = 3;

document.getElementById(“contents”).innerHTML =
document.getElementById(“contents”).innerHTML.replace(
/<h([\d])>([^<]+)<\/h([\d])>/gi,
function (str, openLevel, titleText, closeLevel) {
if (openLevel != closeLevel) {
c.log(openLevel)
return str + ‘ – ‘ + openLevel;
}

if (openLevel > level) {
toc += (new Array(openLevel – level + 1)).join(“<ol>”);
} else if (openLevel < level) {
toc += (new Array(level  openLevel + 1)).join(“</ol>”);
}

level = parseInt(openLevel);

var anchor = titleText.replace(/ /g, “_”);
toc += “<li><a href=\”#” + anchor + “\”>” + titleText
+ “</a></li>”;

return “<h + openLevel + ><a name=\”” + anchor + “\”>+ titleText + “</a></h” + closeLevel + “>”;
}
);

if (level) {
toc += (new Array(level + 1)).join(“</ol>”);
}

document.getElementById(“toc”).innerHTML += toc;
};

1 Answer

Steven Parker
Steven Parker
229,732 Points

Those variables represent the groups that are broken out by the regex expression passed as the first argument to the replace method:

/<h([\d])>([^<]+)<\/h([\d])>/gi
    ^^^^   ^^^^       ^^^^
openLevel  titleText  closeLevel

So if the contents were <h1>sample</h1> then openLevel would be "1", titleText would be "sample", and closeLevel would be "1".