Created
October 21, 2020 06:27
-
-
Save wingyplus/984c5f8eeb922ee0ff89264d7601aeed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[None, Some(1), Some(2), None, Some(10)] | |
->Js.Array2.filter(a => Belt.Option.isSome(a)) | |
->Js.Array2.map(n => Belt.Option.getExn(n)) | |
->Js.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment