freeCodeCamp/curriculum/challenges/arabic/02-javascript-algorithms-an.../es6/use-export-to-reuse-a-code-...

868 B

id title challengeType videoUrl localeTitle
587d7b8c367417b2b2512b56 Use export to Reuse a Code Block 1

Description

undefined

Instructions

undefined

Tests

tests:
  - text: ''
    testString: 'getUserInput => assert(getUserInput("index").match(/export\s+const\s+foo\s*=\s*"bar"/g), "<code>foo</code> is exported.");'
  - text: ''
    testString: 'getUserInput => assert(getUserInput("index").match(/export\s+const\s+bar\s*=\s*"foo"/g), "<code>bar</code> is exported.");'

Challenge Seed

"use strict";
const foo = "bar";
const bar = "foo";

Before Test

window.exports = function(){};

Solution

// solution required