Tell us what’s happening:
Your code so far
var myStr = "<a href="://www.example.com" target="_blank">Link</a>";
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/quoting-strings-with-single-quotes
Firstly, you’ve removed the http.
Then it’s asking you to replace double quotes with single quotes.
"A string can be in double quotes"
'Or it can be in single quotes'
"If the string has quotes 'inside it' you need"
'To either \'escape them\', or'
"Use the other kind:"
"If the string uses double quotes, 'use single' quotes inside"
'If the string uses single quotes, "use double" quotes inside'