ExamGecko
Ask Question

Salesforce Certified JavaScript Developer I Practice Test 4

00:00:00
Show Answer
Report Issue   Restart test

Question 1 / 40

A developer is setting up a new Node.js server with a client library that is built using events and callbacks.

The library:

• Will establish a web socket connection and handle receipt of messages to the server ?

• Will be imported with require, and made available with a variable called we.

The developer also wants to add error logging if a connection fails.

Given this info, which code segment shows the correct way to set up a client with two events that listen at execution time?

ws.connect (( ) => { console.log('connected to client'); }).catch((error) => { console.log('ERROR' , error); }};
ws.connect (( ) => { console.log('connected to client'); }).catch((error) => { console.log('ERROR' , error); }};
ws.on ('connect', ( ) => { console.log('connected to client'); ws.on('error', (error) => { console.log('ERROR' , error); });});
ws.on ('connect', ( ) => { console.log('connected to client'); ws.on('error', (error) => { console.log('ERROR' , error); });});
ws.on ('connect', ( ) => { console.log('connected to client'); }}; ws.on('error', (error) => { console.log('ERROR' , error); }};
ws.on ('connect', ( ) => { console.log('connected to client'); }}; ws.on('error', (error) => { console.log('ERROR' , error); }};
try{ ws.connect (( ) => { console.log('connected to client'); });} catch(error) { console.log('ERROR' , error); };}
try{ ws.connect (( ) => { console.log('connected to client'); });} catch(error) { console.log('ERROR' , error); };}
Comment (0)
Suggested answer: C
asked 23/09/2024
Jay Barre
43 questions