From 0ac78205ae2040d5d56693af8bbb583816dc1566 Mon Sep 17 00:00:00 2001 From: jdwilkin4 Date: Thu, 7 Sep 2023 14:54:53 -0700 Subject: [PATCH] fix: remove js question --- src/data/javascript-quiz.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/data/javascript-quiz.ts b/src/data/javascript-quiz.ts index b8ce7aaea..df8000507 100644 --- a/src/data/javascript-quiz.ts +++ b/src/data/javascript-quiz.ts @@ -129,17 +129,6 @@ const javascriptQuiz = [ "Parameters are optional. If not passed, it will round the given number, leaving with no fractional part", Link: "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toFixed#examples" }, - { - Question: - "In JavaScript, what will be the value for console.log(((a, b = 1, c) => {}).length)?", - Answer: "1", - Distractor1: "3", - Distractor2: "2", - Distractor3: "0", - Explanation: - "length property inside the function indicates the expected number of parameters. But, only paramaters before the first one with a default value are counted.", - Link: "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/length" - }, { Question: "What is the process of converting a value from one data type to another called?",