Online Access Free JS-Dev-101 Exam Questions
| Exam Code: | JS-Dev-101 |
| Exam Name: | Salesforce Certified JavaScript Developer - Multiple Choice |
| Certification Provider: | Salesforce |
| Free Question Number: | 149 |
| Posted: | Jul 19, 2026 |
Refer to the code below:
01 let first = 'Who';
02 let second = 'What';
03 try {
04 try {
05 throw new Error('Sad trombone');
06 } catch (err) {
07 first = 'Why';
08 throw err;
09 } finally {
10 second = 'When';
11 }
12 } catch (err) {
13 second = 'Where';
14 }
What are the values for first and second once the code executes?