freeCodeCamp/curriculum/challenges/spanish/02-javascript-algorithms-an.../basic-javascript/divide-one-number-by-anothe...

1.2 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
cf1111c1c11feddfaeb6bdef Divide One Number by Another with JavaScript 1 Divide un número por otro con JavaScript

Description

También podemos dividir un número por otro. JavaScript usa el símbolo / para la división.

Ejemplo

myVar = 16/2; // asignado 8

Instructions

Cambia el 0 para que el quotient sea igual a 2 .

Tests

tests:
  - text: Haz que el <code>quotient</code> variable sea igual a 2.
    testString: 'assert(quotient === 2, "Make the variable <code>quotient</code> equal to 2.");'
  - text: Usa el operador <code>/</code>
    testString: 'assert(/\d+\s*\/\s*\d+/.test(code), "Use the <code>/</code> operator");'

Challenge Seed

var quotient = 66 / 0;

After Test

console.info('after the test');

Solution

// solution required