showing results for - "quoting strings with single quote"
Alycia
13 Sep 2019
1var myStr = '<a href="http://www.example.com" target="_blank">Link</a>';
2
Claudio
05 Mar 2017
1doubleQuoteStr = "This is a string"; 
2singleQuoteStr = 'This is also a string';
3