aboutsummaryrefslogtreecommitdiff
path: root/files/nl/glossary/truthy/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/nl/glossary/truthy/index.html')
-rw-r--r--files/nl/glossary/truthy/index.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/files/nl/glossary/truthy/index.html b/files/nl/glossary/truthy/index.html
deleted file mode 100644
index b27c843353..0000000000
--- a/files/nl/glossary/truthy/index.html
+++ /dev/null
@@ -1,27 +0,0 @@
----
-title: Waarachtig ("Truthy")
-slug: Glossary/Truthy
-translation_of: Glossary/Truthy
-original_slug: Glossary/Waarachtig
----
-<p>In {{Glossary("JavaScript")}}, is een <strong>waarachtige </strong>waarde (truthy value) een waarde welke vertaalbaar is naar <code>true</code> wanneer deze geevalueerd wordt in een  {{Glossary("Boolean")}} context. Alle waarden zijn waarachtig, tenzij deze worden gedefinieerd als foutief  {{Glossary("Falsy", "falsy")}} (bijv., met uitzondering van <code>false</code>, <code>0</code>, <code>""</code>, <code>null</code>, <code>undefined</code>, and <code>NaN</code>).</p>
-
-<p>{{Glossary("JavaScript")}} gebruikt type {{Glossary("Type_Conversion", "coercion")}} in een Boolean context.</p>
-
-<p>Voorbeelden van waarachtige waarden/ "<em>truthy values"</em> in JavaScript (die vertaalbaar zijn naar true en dus het  <code>if</code> blok zullen doen uitvoeren):</p>
-
-<pre class="brush: js">if (true)
-if ({})
-if ([])
-if (42)
-if ("foo")
-if (new Date())
-</pre>
-
-<h2 id="See_also">See also</h2>
-
-<ul>
- <li>{{Glossary("Falsy")}}</li>
- <li>{{Glossary("Type_Conversion", "Coercion")}}</li>
- <li>{{Glossary("Boolean")}}</li>
-</ul>