diff options
author | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:48:47 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-02-11 14:48:47 +0100 |
commit | 004b3c5fc8d71b68fcb019c9e0346bf80024dbbd (patch) | |
tree | da24dacd9c5017e318f84563381671b5bdfb3e47 /files/nl/glossary/truthy | |
parent | 8260a606c143e6b55a467edf017a56bdcd6cba7e (diff) | |
download | translated-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.html | 26 |
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> |