I'm pondering the best and most semantically proper way to create an observable that emits immediately upon creation.
While I could use of(unknown)
, of(undefined)
, of(null)
, of(true)
, etc., I'm curious if there is a more "correct" approach or any recommended references for this scenario?