1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-01 05:21:43 +02:00

Fix string markers in markdown (#6601)

Surround quotation marks with backticks to make the marks render correctly on the website.
This commit is contained in:
Frands Otting
2024-08-18 02:45:52 +02:00
committed by GitHub
parent 0b2119be50
commit dfc38db855

View File

@@ -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: