2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-12 19:10:26 +00:00

Merge pull request #162 from Lynextion/patch-1

This commit is contained in:
Igor Chubin 2021-05-31 23:46:35 +02:00 committed by GitHub
commit 5722e8ecec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,9 @@
// Null is an Object
typeof null // => 'object'
// Weird decimal calculation
0.1 + 0.2 // -> 0.30000000000000004
// Despite this, null is not an instance of an Object
null instanceof Object // => false