2018-10-10 18:03:03 -04:00
---
id: a6b0bb188d873cb2c8729495
title: Convert HTML Entities
isRequired: true
challengeType: 5
2019-08-28 16:26:13 +03:00
forumTopicId: 16007
2018-10-10 18:03:03 -04:00
localeTitle: Преобразование HTML-объектов
---
## Description
2019-08-28 16:26:13 +03:00
<section id='description'>
2019-11-19 19:54:48 -05:00
Преобразуйте символы <code>&</code> , <code><</code> , <code>></code> , <code>"</code> (двойная кавычка) и <code>' ;</code> (апострофа) в строку в соответствующие HTML-объекты. Н е забудьте использовать <a href="https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514" target="_blank">Read-Search-Ask,</a> если вы застряли. собственный код.
2019-08-28 16:26:13 +03:00
</section>
2018-10-10 18:03:03 -04:00
## Instructions
2019-08-28 16:26:13 +03:00
<section id='instructions'>
2018-10-10 18:03:03 -04:00
</section>
## Tests
<section id='tests'>
```yml
tests:
2019-08-28 16:26:13 +03:00
- text: <code>convertHTML("Dolce & Gabbana")</code> should return <code>Dolce &amp; Gabbana</code>.
testString: assert.match(convertHTML("Dolce & Gabbana"), /Dolce & Gabbana/);
- text: <code>convertHTML("Hamburgers < Pizza < Tacos")</code> should return <code>Hamburgers &lt; Pizza &lt; Tacos</code>.
testString: assert.match(convertHTML("Hamburgers < Pizza < Tacos"), /Hamburgers < Pizza < Tacos/);
- text: <code>convertHTML("Sixty > twelve")</code> should return <code>Sixty &gt; twelve</code>.
testString: assert.match(convertHTML("Sixty > twelve"), /Sixty > twelve/);
- text: <code>convertHTML('Stuff in "quotation marks"')</code> should return <code>Stuff in &quot;quotation marks&quot;</code>.
testString: assert.match(convertHTML('Stuff in "quotation marks"'), /Stuff in "quotation marks"/);
- text: <code>convertHTML("Schindler's List")</code> should return <code>Schindler&apos;s List</code>.
testString: assert.match(convertHTML("Schindler's List"), /Schindler's List/);
- text: <code>convertHTML("<>")</code> should return <code>&lt;&gt;</code>.
testString: assert.match(convertHTML('<>'), /<>/);
- text: <code>convertHTML("abc")</code> should return <code>abc</code>.
testString: assert.strictEqual(convertHTML('abc'), 'abc');
2018-10-10 18:03:03 -04:00
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function convertHTML(str) {
// :)
return str;
}
convertHTML("Dolce & Gabbana");
```
</div>
</section>
## Solution
<section id='solution'>
```js
2019-08-28 16:26:13 +03:00
var MAP = { '&': '&',
'<': '<',
'>': '>',
'"': '"',
"'": '''};
function convertHTML(str) {
return str.replace(/[&<>"']/g, function(c) {
return MAP[c];
});
}
2018-10-10 18:03:03 -04:00
```
2019-08-28 16:26:13 +03:00
2018-10-10 18:03:03 -04:00
</section>