Closed jmlsf closed 4 years ago
This:
(js/console.log {:a false})
Prints:
:a | null
Even though:
(js/console.log {:a true})
:a | true
Am I missing something or is it weird to print null for false and true for true?
null
true
This:
Prints:
Even though:
Prints:
Am I missing something or is it weird to print
null
for false andtrue
for true?