Creates a new instance of Option based on the value passed.
Option
Optional
Value to put in an Option.
If the value is null or undefined, it returns None. Otherwise, it returns Some(value).
null
undefined
None
Some(value)
Creates a new instance of
Option
based on the value passed.