(n)
| 296 | }); |
| 297 | |
| 298 | const createLinks = function (n) { |
| 299 | for (let i = 0, end = n; i < end; i++) { |
| 300 | const link = document.createElement("a"); |
| 301 | link.textContent = "test"; |
| 302 | document.getElementById("test-div").appendChild(link); |
| 303 | } |
| 304 | }; |
| 305 | |
| 306 | context("Alphabet link hints", () => { |
| 307 | let mode; |