aboutsummaryrefslogtreecommitdiff
path: root/files/nl/glossary/hoisting/index.html
blob: 82aca448f7df5eccb407ab0bae41f9116ae1ccac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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>