Skip to content

Commit

Permalink
Valores falsy
Browse files Browse the repository at this point in the history
  • Loading branch information
FROSTYLAN committed Aug 24, 2022
1 parent c6c107b commit 0fd70d2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions 03-JavascriptBásico/07-falsy.js
@@ -0,0 +1,26 @@
if (false) {
}

if (0) {
}

if (-0) {
}

if (0n) {
}

if ("" && ``) {
}

if (null) {
}

if (undefined) {
}

if (NaN) {
}

if (document.all) {
}

0 comments on commit 0fd70d2

Please sign in to comment.