--- id: 56533eb9ac21ba0edf2244b4 title: Quoting Strings with Single Quotes challengeType: 1 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'assert(!/\\/g.test(code) && myStr.match("\\s*\\s*Link\\s*\\s*"), "Remove all the backslashes (\)");' - text: '' testString: 'assert(code.match(/"/g).length === 4 && code.match(/"/g).length === 2, "You should have two single quotes ' and four double quotes "");' ```
## Challenge Seed
```js var myStr = "Link"; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```