Skip to content

Commit

Permalink
fix: remove js question
Browse files Browse the repository at this point in the history
  • Loading branch information
jdwilkin4 committed Sep 7, 2023
1 parent d276800 commit 0ac7820
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/data/javascript-quiz.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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?",
Expand Down

0 comments on commit 0ac7820

Please sign in to comment.