Omnibus commited on
Commit
4768d99
1 Parent(s): 46847be

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +5 -3
index.html CHANGED
@@ -14,9 +14,11 @@
14
  const urlParams = new URLSearchParams(queryString);
15
  const links = urlParams.get("links")
16
 
17
- for (const prop in links) {
18
- console.log(prop);
19
- }
 
 
20
  document.getElementById("in_html").innerHTML=links
21
  </script>
22
  </body>
 
14
  const urlParams = new URLSearchParams(queryString);
15
  const links = urlParams.get("links")
16
 
17
+ let i = 0;
18
+
19
+ while (i < links.length) {
20
+ console.log(links[i]);
21
+ i++;
22
  document.getElementById("in_html").innerHTML=links
23
  </script>
24
  </body>