freeCodeCamp/curriculum/challenges/russian/02-javascript-algorithms-an.../basic-javascript/understanding-uninitialized...

2.7 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
56533eb9ac21ba0edf2244aa Understanding Uninitialized Variables 1 Понимание неинициализированных переменных

Description

Когда объявляются переменные JavaScript, они имеют начальное значение undefined . Если вы выполняете математическую операцию с undefined переменной, ваш результат будет NaN что означает «Not a Number» . Если вы конкатенируете строку с undefined переменной, вы получите буквенную строку "undefined" .

Instructions

Инициализируйте три переменные a , b и c с 5 , 10 и "I am a" соответственно, чтобы они не были undefined .

Tests

tests:
  - text: '<code>a</code> следует определить и оценить, чтобы иметь значение <code>6</code>'
    testString: 'assert(typeof a === "number" && a === 6, "<code>a</code> should be defined and evaluated to have the value of <code>6</code>");'
  - text: '<code>b</code> следует определить и оценить, чтобы иметь значение <code>15</code>'
    testString: 'assert(typeof b === "number" && b === 15, "<code>b</code> should be defined and evaluated to have the value of <code>15</code>");'
  - text: <code>c</code> не должен содержать <code>undefined</code> и должен иметь значение «Я - String!».
    testString: 'assert(!/undefined/.test(c) && c === "I am a String!", "<code>c</code> should not contain <code>undefined</code> and should have a value of "I am a String!"");'
  - text: Не меняйте код под строкой
    testString: 'assert(/a = a \+ 1;/.test(code) && /b = b \+ 5;/.test(code) && /c = c \+ " String!";/.test(code), "Do not change code below the line");'

Challenge Seed

// Initialize these three variables
var a;
var b;
var c;

// Do not change code below this line

a = a + 1;
b = b + 5;
c = c + " String!";

After Test

console.info('after the test');

Solution

// solution required