summaryrefslogtreecommitdiff
path: root/index.html
blob: 38029f920e06ab05a32f8517f9da02bbc7185ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
<title>Recursion</title>
<h1>recursion</h1>
<h2>Noun. Pronounciation: <i>ri-ker-zhen</i></h2>
<h2>Definition of recursion:</h2>
<iframe src="recursion.html" width=90% height=90%></iframe>
<!-- https://www.bryanbraun.com/2021/03/24/infinitely-nested-iframes/ -->
<script>
const iframeEl = document.querySelector('iframe');
const nextQueryValue = !location.search ? 1 : Number(location.search.split("?").pop()) + 1;
iframeEl.src = `index.html?${nextQueryValue}`;
</script>