From 3b756676c49c91ada07f5a7b363e54cdd3a29ee7 Mon Sep 17 00:00:00 2001 From: Jatin_Mehta <143813065+JatinMehta007@users.noreply.github.com> Date: Sat, 20 Sep 2025 23:23:34 +0530 Subject: [PATCH] fix(curriculum): format code blocks in quiz answers (#62282) Co-authored-by: Ilenia <26656284+ilenia-magoni@users.noreply.github.com> Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com> --- .../66edcd875b0d91de1fbbb492.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/curriculum/challenges/english/blocks/quiz-javascript-fundamentals/66edcd875b0d91de1fbbb492.md b/curriculum/challenges/english/blocks/quiz-javascript-fundamentals/66edcd875b0d91de1fbbb492.md index 3368a81ec56..fa8b82c146e 100644 --- a/curriculum/challenges/english/blocks/quiz-javascript-fundamentals/66edcd875b0d91de1fbbb492.md +++ b/curriculum/challenges/english/blocks/quiz-javascript-fundamentals/66edcd875b0d91de1fbbb492.md @@ -500,9 +500,7 @@ Which of the following examples exports the `calculateSum` function from a `util export default function calculateSum(a, b) { return a + b; } -``` -```js // app.js import { calculateSum } from './utils.js'; console.log(calculateSum(2, 3)); @@ -515,9 +513,7 @@ console.log(calculateSum(2, 3)); export function calculateSum(a, b) { return a + b; } -``` -```js // app.js import calculateSum from './utils.js'; console.log(calculateSum(2, 3)); @@ -530,9 +526,7 @@ console.log(calculateSum(2, 3)); function calculateSum(a, b) { return a + b; } -``` -```js export default calculateSum; // app.js @@ -547,9 +541,7 @@ console.log(utils.calculateSum(2, 3)); export function calculateSum(a, b) { return a + b; } -``` -```js // app.js import { calculateSum } from './utils.js'; console.log(calculateSum(2, 3));