diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
commit | 074785cea106179cb3305637055ab0a009ca74f2 (patch) | |
tree | e6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/nl/glossary/hoisting | |
parent | da78a9e329e272dedb2400b79a3bdeebff387d47 (diff) | |
download | translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2 translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip |
initial commit
Diffstat (limited to 'files/nl/glossary/hoisting')
-rw-r--r-- | files/nl/glossary/hoisting/index.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/files/nl/glossary/hoisting/index.html b/files/nl/glossary/hoisting/index.html new file mode 100644 index 0000000000..82aca448f7 --- /dev/null +++ b/files/nl/glossary/hoisting/index.html @@ -0,0 +1,41 @@ +--- +title: Hoisting +slug: Glossary/Hoisting +tags: + - CodingScripting + - Glossary + - JavaScript +translation_of: Glossary/Hoisting +--- +<p>{{Glossary("Function", "Functies")}} en {{Glossary("Variable", "variabelen")}} zijn <strong><em>hoisted</em> </strong>(letterlijk: "getakeld" of "omhoog gehesen") in {{Glossary("JavaScript")}}. <em>Hoisting</em> is het gedrag in JavaScript waarbij declaraties naar het begin van een {{Glossary("scope")}} verplaatst worden (globale scope of de scope van de huidige functie).</p> + +<p>Dit betekent dat men een functie of een variabele kan gebruiken vooraleer ze gedeclareerd is. Met andere woorden: een functie of een variabele kan geclareerd worden nadat ze al is gebruikt.</p> + +<h2 id="Leer_meer">Leer meer</h2> + +<h3 id="Technisch_voorbeeld">Technisch voorbeeld</h3> + +<p>Variabelen:</p> + +<pre class="brush: js">foo = 2 +var foo; + +// wordt impliciet begrepen als: + +var foo; +foo = 2;</pre> + +<p>Functies:</p> + +<pre class="brush: js">hoisted(); // logt "foo" + +function hoisted() { + console.log("foo"); +}</pre> + +<h3 id="Technische_referenties">Technische referenties</h3> + +<ul> + <li><a href="/en-US/docs/Web/JavaScript/Reference/Statements/var">var statement</a> - MDN</li> + <li><a href="/en-US/docs/Web/JavaScript/Reference/Statements/function">function statement</a> - MDN</li> +</ul> |