diff options
author | Sean Corrales <scorrales@usft.com> | 2015-10-14 14:52:37 -0500 |
---|---|---|
committer | Sean Corrales <scorrales@usft.com> | 2015-10-14 14:52:37 -0500 |
commit | fcc5086cfcac4e1efc365c16617aaf7ff9d86f80 (patch) | |
tree | da683653842a5ae37177d191a51833f58e0b9a41 /fr-fr/javascript-fr.html.markdown | |
parent | c357be714fe39c8c97e4d1ac12b3cdfb673d1e1e (diff) | |
parent | 8ec133b29595b8dac963eafa63ab0c479e37a3c1 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'fr-fr/javascript-fr.html.markdown')
-rw-r--r-- | fr-fr/javascript-fr.html.markdown | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fr-fr/javascript-fr.html.markdown b/fr-fr/javascript-fr.html.markdown index 2e18d0be..15478cdb 100644 --- a/fr-fr/javascript-fr.html.markdown +++ b/fr-fr/javascript-fr.html.markdown @@ -469,9 +469,6 @@ myNumber === myNumberObj; // = false if (0){ // 0 est falsy, le code ne fonctionnera pas. } -if (Number(0)){ - // Parce que Number(0) est truthy, le code fonctionnera -} // Cependant, vous pouvez ajouter des fonctionnalités aux types de bases grâce à // cette particularité. |