Free CRT-600 Exam Braindumps (page: 25)

Page 24 of 57

A developer receives a comment from the Tech Lead that the code given below has error:
const monthName = `July';
const year = 2019;
if(year === 2019) {
monthName = `June';
}
Which line edit should be made to make this code run?

  1. 01 let monthName ='July';
  2. 02 let year =2019;
  3. 02 const year = 2020;
  4. 03 if (year == 2019) {

Answer(s): A



Refer to the following code:
<html lang="en">
<body>
<div onclick = "console.log(`Outer message') ;">
<button id ="myButton">CLick me<button>
</div>
</body>
<script>
function displayMessage(ev) {

ev.stopPropagation();
console.log(`Inner message.');
}
const elem = document.getElementById(`myButton');
elem.addEventListener(`click' , displayMessage);
</script>
</html>
What will the console show when the button is clicked?

  1. Outer message
  2. Outer message
    Inner message
  3. Inner message
    Outer message
  4. Inner message

Answer(s): D



Refer to the code below:
function foo () {
const a =2;
function bat() {
console.log(a);
}
return bar;
}
Why does the function bar have access to variable a ?

  1. Inner function's scope
  2. Hoisting
  3. Outer function's scope
  4. Prototype chain

Answer(s): C



Given the following code:
document.body.addEventListener(` click ', (event) => { if (/* CODE REPLACEMENT HERE */) {
console.log(`button clicked!');

)
});
Which replacement for the conditional statement on line 02 allows a developer to correctly determine that a button on page is clicked?

  1. Event.clicked
  2. e.nodeTarget ==this
  3. event.target.nodeName == `BUTTON'
  4. button.addEventListener(`click')

Answer(s): C






Post your Comments and Discuss Salesforce CRT-600 exam with other Community members:

CRT-600 Discussions & Posts