aboutsummaryrefslogtreecommitdiff
path: root/files/nl/glossary/truthy
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:48:47 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:48:47 +0100
commit004b3c5fc8d71b68fcb019c9e0346bf80024dbbd (patch)
treeda24dacd9c5017e318f84563381671b5bdfb3e47 /files/nl/glossary/truthy
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-004b3c5fc8d71b68fcb019c9e0346bf80024dbbd.tar.gz
translated-content-004b3c5fc8d71b68fcb019c9e0346bf80024dbbd.tar.bz2
translated-content-004b3c5fc8d71b68fcb019c9e0346bf80024dbbd.zip
unslug nl: move
Diffstat (limited to 'files/nl/glossary/truthy')
-rw-r--r--files/nl/glossary/truthy/index.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/files/nl/glossary/truthy/index.html b/files/nl/glossary/truthy/index.html
new file mode 100644
index 0000000000..a99021a002
--- /dev/null
+++ b/files/nl/glossary/truthy/index.html
@@ -0,0 +1,26 @@
+---
+title: Waarachtig ("Truthy")
+slug: Glossary/Waarachtig
+translation_of: Glossary/Truthy
+---
+<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>