Fix string markers in markdown (#6601)

Surround quotation marks with backticks to make the marks render correctly on the website.
pull/6659/head
Frands Otting 3 months ago committed by GitHub
parent 0b2119be50
commit dfc38db855
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/data/roadmaps/javascript/content/string@1RcwBHU3jzx0YxxUGZic4.md

@ -1,6 +1,6 @@
# String
String is a primitive type that holds a sequence of characters. String in Javascript is written within a pair of single quotation marks '' or double quotation marks "". Both quotes can be used to contain a string but only if the starting quote is the same as the end quote.
String is a primitive type that holds a sequence of characters. String in Javascript is written within a pair of single quotation marks `''` or double quotation marks `""`. Both quotes can be used to contain a string but only if the starting quote is the same as the end quote.
Visit the following resources to learn more:

Loading…
Cancel
Save