## fromArrayWithNotifications or fromArrayN ```ts function fromArrayWithNotifications( array: ArrayLike, ): IObservable> ``` ```ts type IFromArrayObservableNotifications = INextNotification | ICompleteNotification ``` Creates an Observable from an Array. It emits the array's values one by one in the form of `next` Notifications and then complete (`complete` Notification). ### Examples #### Basic example ```ts const subscribe = fromArrayWithNotifications([0, 1, 2, 3]); subscribe((notification) => { console.log(notification.name, ':', notification.value); }); ``` Output: ```text next: 0 next: 1 next: 2 next: 3 complete ```