Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ryoakg/4ec7a3eff2edcf4ce678b39cecb4e266 to your computer and use it in GitHub Desktop.
Save ryoakg/4ec7a3eff2edcf4ce678b39cecb4e266 to your computer and use it in GitHub Desktop.
[10 ?? 1,
"a" ?? 1,
true ?? 1,
false ?? 1,
null ?? 1,
undefined ?? 1
];
#=> [10, "a", true, false, 1, 1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment