Skip to content
Advertisement

Attach an event handler to an object literal

I have an object literal to open a websocket connection. this is a simplified version of it:

JavaScript

i can initialize the connection with:

JavaScript

now i want to attach an eventhandler to websocket, which is called when onmessage is fired. like this:

JavaScript

is there a way to achieve this?

Advertisement

Answer

Just return the connection at the end of the start function.

JavaScript
Advertisement