ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 121 - Certified JavaScript Developer I discussion

Report
Export

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?

A.
ws.connect (( ) => { console.log('connected to client'); }).catch((error) => { console.log('ERROR' , error); }};
Answers
A.
ws.connect (( ) => { console.log('connected to client'); }).catch((error) => { console.log('ERROR' , error); }};
B.
ws.on ('connect', ( ) => { console.log('connected to client'); ws.on('error', (error) => { console.log('ERROR' , error); });});
Answers
B.
ws.on ('connect', ( ) => { console.log('connected to client'); ws.on('error', (error) => { console.log('ERROR' , error); });});
C.
ws.on ('connect', ( ) => { console.log('connected to client'); }}; ws.on('error', (error) => { console.log('ERROR' , error); }};
Answers
C.
ws.on ('connect', ( ) => { console.log('connected to client'); }}; ws.on('error', (error) => { console.log('ERROR' , error); }};
D.
try{ ws.connect (( ) => { console.log('connected to client'); });} catch(error) { console.log('ERROR' , error); };}
Answers
D.
try{ ws.connect (( ) => { console.log('connected to client'); });} catch(error) { console.log('ERROR' , error); };}
Suggested answer: C
asked 23/09/2024
Jay Barre
37 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first