This is the first time i am working with Web sockets please pardon any error.
I am using rxjs websockets with Angular. the data i get in the browser is something like this from the websocket
'[["lnkd",76.86839599398574],["mu",127.8241808237684],["msft",174.50062080196034],["yhoo",96.43342811472303]]'
This is data i get in console . I am not able to use ngFor on this as it is a String type data . I want to be able to get the data in form of an array or array instead of in String is this possible .
As of now i get this in broswer using {{data | async }}
but i need it a table format using ngfor