From bed0fccd17105cbf5fc27b90c14415a798f564a2 Mon Sep 17 00:00:00 2001 From: EthanHarv Date: Wed, 14 Jul 2021 01:47:45 -0500 Subject: [PATCH] Remove unneeded `console.log()` calls --- slader-limit-bypass/js/quizlet_bypass.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/slader-limit-bypass/js/quizlet_bypass.js b/slader-limit-bypass/js/quizlet_bypass.js index f978164..b63d45c 100644 --- a/slader-limit-bypass/js/quizlet_bypass.js +++ b/slader-limit-bypass/js/quizlet_bypass.js @@ -55,10 +55,8 @@ function processData(data){ // Display JSON data as answer qDetails.question.solutions.forEach(solution => { - console.log(solution) const numSteps = solution.steps.length; solution.steps.forEach(step => { - //console.log(step); const stepNum = step.stepNumber; // Create card element var div = document.createElement('div');