CRT-600 Exam Question 56
Consider type coercion, what does the following expression evaluate to?
True + 3 + '100' + null
True + 3 + '100' + null
CRT-600 Exam Question 57
A test has a dependency on database.query. During the test the dependency is replaced with an object called database with the method, query, that returns an array. The developer needs to verify how many times the method was called and the arguments used each time.
Which two test approaches describe the requirement?
Choose 2 answers
Which two test approaches describe the requirement?
Choose 2 answers
CRT-600 Exam Question 58
A developer has an ErrorHandler module that contains multiple functions.
What kind of export should be leveraged so that multiple functions can be used?
What kind of export should be leveraged so that multiple functions can be used?
CRT-600 Exam Question 59
A developer wants to create an object from a function in the browser using the code below:
Function Monster() { this.name = 'hello' };
Const z = Monster();
What happens due to lack of the new keyword on line 02?
Function Monster() { this.name = 'hello' };
Const z = Monster();
What happens due to lack of the new keyword on line 02?
CRT-600 Exam Question 60
Refer to the code below
let inArray = [[1,2],[3,4,5]];
which two statements results in the array [1,2,3,4,5]?
choose 2 answer
let inArray = [[1,2],[3,4,5]];
which two statements results in the array [1,2,3,4,5]?
choose 2 answer
