CRT-600 試験問題を無料オンラインアクセス

試験コード:CRT-600
試験名称:Salesforce Certified JavaScript Developer I
認定資格:Salesforce
無料問題数:225
更新日:2026-07-20
評価
100%

問題 1

A developer has an is Dog function that takes one argument cat. They want to schedule the function to run every minute.
What is the correct syntax for scheduling this function?

問題 2

Refer to code below:
function Person() {
this.firstName = 'John';
}
Person.prototype ={
Job: x => 'Developer'
};
const myFather = new Person();
const result =myFather.firstName + ' ' + myFather.job();
What is the value of the result after line 10 executes?

問題 3

myArraym can have one level, two levels, or more levels.
Which statement flattens myArray when it can be arbitrarily nested?

問題 4

A developer is required to write a function that calculates the sum of elements in an array but is getting undefined every time the code is executed. The developer needs to find what is missing in the code below.
Const sumFunction = arr => {
Return arr.reduce((result, current) => {
//
Result += current;
//
), 10);
);
Which option makes the code work as expected?

問題 5

Which three options show valid methods for creating a fat arrow function?
Choose 3 answers

コメントを追加

あなたのメールアドレスが公開されることはありません。個人情報に関する内容は隠されます *

insert code
画面にある文字を入力してください。