You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
I know this was only given as an example, but there's a small mistake:
Screenshot:
What is wrong?
It says that let volume = localStorage.volume || 0.5 will be 0.5 when localStorage.volume is set to 0, but everything stored in localStorage can only be a string and "0" is truthy.
localStorage.volume = 0; // saved as "0"
let volume = localStorage.volume || 0.5; // volume = "0" || 0.5
volume === "0" // Not 0.5 as mentioned in the example
The text was updated successfully, but these errors were encountered:
Cristy94
changed the title
TS 3.7 Nullish Coalescing example wrong
TS 3.7 Release Notes Nullish Coalescing example wrong
Nov 5, 2019
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
https://github.com/microsoft/TypeScript-Handbook/blob/master/pages/release%20notes/TypeScript%203.7.md#nullish-coalescing
I know this was only given as an example, but there's a small mistake:
Screenshot:
What is wrong?
It says that
let volume = localStorage.volume || 0.5
will be0.5
whenlocalStorage.volume
is set to0
, but everything stored in localStorage can only be astring
and"0"
is truthy.The text was updated successfully, but these errors were encountered: