JavaScript-Developer-I日本語 無料問題集「Salesforce Certified JavaScript Developer I Exam (JavaScript-Developer-I日本語版)」
以下のコードを考えると:
01 function GameConsole (name) {
02 this.name = name;
03 }
04
05 GameConsole.prototype.load = function(gamename) {
06 console.log( ` $(this.name) is loading a game : $(gamename) ...`);
07 )
08 function Console 16 Bit (name) {
09 GameConsole.call(this, name) ;
10 }
11 Console16bit.prototype = Object.create ( GameConsole.prototype) ;
12 //insert code here
13 console.log( ` $(this.name) is loading a cartridge game : $(gamename) ...`);
14 }
15 const console16bit = new Console16bit(' SNEGeneziz ');
16 console16bit.load(' Super Nonic 3x Force ');
開発者が15行目に何を挿入して、次のメッセージを使用して次のメッセージを出力する必要があるか
方法 ?
> SNEGenezizはカートリッジゲームをロードしています:Super Monic3xForce。。。
01 function GameConsole (name) {
02 this.name = name;
03 }
04
05 GameConsole.prototype.load = function(gamename) {
06 console.log( ` $(this.name) is loading a game : $(gamename) ...`);
07 )
08 function Console 16 Bit (name) {
09 GameConsole.call(this, name) ;
10 }
11 Console16bit.prototype = Object.create ( GameConsole.prototype) ;
12 //insert code here
13 console.log( ` $(this.name) is loading a cartridge game : $(gamename) ...`);
14 }
15 const console16bit = new Console16bit(' SNEGeneziz ');
16 console16bit.load(' Super Nonic 3x Force ');
開発者が15行目に何を挿入して、次のメッセージを使用して次のメッセージを出力する必要があるか
方法 ?
> SNEGenezizはカートリッジゲームをロードしています:Super Monic3xForce。。。
正解:C
解答を投票する
開発者は、ユーザーから報告されたいくつかのバグを修正するように求められます。そのために、開発者は次のように追加します
デバッグ用のブレークポイント。
Function Car (maxSpeed, color){
This.maxspeed =masSpeed;
This.color = color;
carSpeed = document.getElementById('CarSpeed');とします。
デバッガ;
fourWheels = new Car(carSpeed.value、'red');とします。
06行目のブレークポイントでコード実行が停止した場合。2種類の情報は次のとおりです。
ブラウザコンソールで利用できますか?
2つの答えを選択してください:
デバッグ用のブレークポイント。
Function Car (maxSpeed, color){
This.maxspeed =masSpeed;
This.color = color;
carSpeed = document.getElementById('CarSpeed');とします。
デバッガ;
fourWheels = new Car(carSpeed.value、'red');とします。
06行目のブレークポイントでコード実行が停止した場合。2種類の情報は次のとおりです。
ブラウザコンソールで利用できますか?
2つの答えを選択してください:
正解:A、C
解答を投票する
以下のコードを参照してください。
01 let car1 = new promise((_, reject) =>
02 setTimeout(reject, 2000, "Car 1 crashed in"));
03 let car2 = new Promise(resolve => setTimeout(resolve, 1500, "Car 2
completed"));
04 let car3 = new Promise(resolve => setTimeout (resolve, 3000, "Car 3
Completed"));
05 Promise.race([car1, car2, car3])
06 .then(value => (
07 let result = $(value) the race. `;
08 ))
09 .catch( arr => (
10 console.log("Race is cancelled.", err);
11 ));
Promise.raceを実行したときの結果の値は何ですか?
01 let car1 = new promise((_, reject) =>
02 setTimeout(reject, 2000, "Car 1 crashed in"));
03 let car2 = new Promise(resolve => setTimeout(resolve, 1500, "Car 2
completed"));
04 let car3 = new Promise(resolve => setTimeout (resolve, 3000, "Car 3
Completed"));
05 Promise.race([car1, car2, car3])
06 .then(value => (
07 let result = $(value) the race. `;
08 ))
09 .catch( arr => (
10 console.log("Race is cancelled.", err);
11 ));
Promise.raceを実行したときの結果の値は何ですか?
正解:A
解答を投票する
以下のコードを参照してください。
ページの特定の要素 myElement がクリックされたことを開発者が正しく判断できるようにする、行 02 の条件ステートメントの置き換えはどれですか?
ページの特定の要素 myElement がクリックされたことを開発者が正しく判断できるようにする、行 02 の条件ステートメントの置き換えはどれですか?
正解:
event.target.id =='myElement'