freeCodeCamp/curriculum/challenges/russian/02-javascript-algorithms-and-data-structures/basic-javascript/subtract-one-number-from-another-with-javascript.russian.md

1.4 KiB
Raw Blame History

id, title, challengeType, videoUrl, forumTopicId, localeTitle
id title challengeType videoUrl forumTopicId localeTitle
cf1111c1c11feddfaeb4bdef Subtract One Number from Another with JavaScript 1 https://scrimba.com/c/cP3yQtk 18314 Вычитайте один номер из другого с помощью JavaScript

Description

Мы также можем вычесть одно число из другого. JavaScript использует символ - для вычитания.

пример

myVar = 12 - 6; // присвоено 6

Instructions

Измените 0 так что разница составляет 12 .

Tests

tests:
  - text: Make the variable <code>difference</code> equal 12.
    testString: assert(difference === 12);
  - text: Only subtract one number from 45.
    testString: assert(/var\s*difference\s*=\s*45\s*-\s*[0-9]*;(?!\s*[a-zA-Z0-9]+)/.test(code));

Challenge Seed

var difference = 45 - 0;

After Tests

(function(z){return 'difference = '+z;})(difference);

Solution

var difference = 45 - 33;