diff --git a/curriculum/challenges/russian/04-data-visualization/json-apis-and-ajax/convert-json-data-to-html.russian.md b/curriculum/challenges/russian/04-data-visualization/json-apis-and-ajax/convert-json-data-to-html.russian.md index d77349e641..eb575dfbd1 100644 --- a/curriculum/challenges/russian/04-data-visualization/json-apis-and-ajax/convert-json-data-to-html.russian.md +++ b/curriculum/challenges/russian/04-data-visualization/json-apis-and-ajax/convert-json-data-to-html.russian.md @@ -13,8 +13,8 @@ localeTitle: Преобразование данных JSON в HTML ## Instructions
-Add a forEach method to loop over the JSON data and create the HTML elements to display it. -Here is some example JSON +Добавьте метод forEach для цикличного прохода по JSON и создайте HTML элементы для отображения информации. +Вот пример JSON ```json [ @@ -35,11 +35,11 @@ Here is some example JSON ```yml tests: - - text: Your code should store the data in the html variable + - text: Ваш код должен храниться информацию в переменной html testString: assert(code.match(/html\s+?(\+=|=\shtml\s\+)/g)); - - text: Your code should use a forEach method to loop over the JSON data from the API. + - text: Ваш код должен использовать метод forEachдля цикличного прохождения над данными JSON из API. testString: assert(code.match(/json\.forEach/g)); - - text: Your code should wrap the key names in strong tags. + - text: Ваш код должен обернуть данные в strong теги. testString: assert(code.match(/.+<\/strong>/g)); ```