From 1a33494c210e6b89d0a7f04fab5ab549f60b63a9 Mon Sep 17 00:00:00 2001 From: Gautam-Hegde Date: Mon, 18 Sep 2023 23:53:51 +0530 Subject: [PATCH] chore : Duplicate bug fix --- src/data/javascript-quiz.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/data/javascript-quiz.ts b/src/data/javascript-quiz.ts index 7a66ca9a5..d6f7787a0 100644 --- a/src/data/javascript-quiz.ts +++ b/src/data/javascript-quiz.ts @@ -1602,16 +1602,6 @@ const javascriptQuiz = [ "In JavaScript besides primitives types, we have the Object value type. Arrays are a special type of object that represents a collection of similar types of values.", Link: "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array" }, - { - Question: "In JavaScript, what type of value is an Array?", - Answer: "Object", - Distractor1: "Array", - Distractor2: "Map", - Distractor3: "Set", - Explanation: - "In JavaScript besides primitives types, we have the Object value type. Arrays are a special type of object that represents a collection of similar types of values.", - Link: "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array" - }, { Question: "In JavaScript, which of the following methods will return the string representation of a number?",