When working with the following code:
const data = Observable.from([{name: 'Alice', age: 25}, {name: 'Bob', age: 35}]);
console.log(typeof(data));
The type is displayed as Object().
Is there a way to obtain more specific information? I am curious if it can be identified as an Observable().
Thank you and best regards.