JavaScript-Developer-I Exam Question 6

Refer to code below:
Let first = 'who';
Let second = 'what';
Try{
Try{
Throw new error('Sad trombone');
}catch (err){
First ='Why';
}finally {
Second ='when';
} catch (err) {
Second ='Where';
}
What are the values for first and second once the code executes ?
  • JavaScript-Developer-I Exam Question 7

    developer publishes a new version of a package with new features that do not break backward compatibility. The previous version number was 1.1.3.
    Following semantic versioning format, what should the new package version number be?
  • JavaScript-Developer-I Exam Question 8

    Refer to the code below:
    Let inArray =[ [ 1, 2 ] , [ 3, 4, 5 ] ];
    Which two statements result in the array [1, 2, 3, 4, 5] ?
    Choose 2 answers
  • JavaScript-Developer-I Exam Question 9

    At Universal Containers, every team has its own way of copying JavaScript objects. The code Snippet shows an implementation from one team:
    Function Person() {
    this.firstName = "John";
    this.lastName = 'Doe';
    This.name =() => (
    console.log('Hello $(this.firstName) $(this.firstName)');
    )}
    Const john = new Person ();
    Const dan = JSON.parse(JSON.stringify(john));
    dan.firstName ='Dan';
    dan.name();
    What is the Output of the code execution?
  • JavaScript-Developer-I Exam Question 10

    A test has a dependency on database. query. During the test, the dependency is replaced with an object called database with the method, Calculator query, that returns an array. The developer does not need to verify how many times the method has been called.
    Which two test approaches describe the requirement?
    Choose 2 answers