Test Set 1

Share it

Time limit: 15:00

Practice Test
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Question 1 of 20
A developer needs to dispatch a custom event called 'update' to send information about 'recordId'. Refer to the code below:
01 const event = new CustomEvent (
02//Missing code
03 );
04 obj.dispatchEvent(event);
Which two options could a developer insert at the placeholder in line 02 to achieve this?
Choose 2 answers