1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-02 22:02:39 +02:00

Update JS string content - added backticks ( `` ) (#6767)

* Update string@1RcwBHU3jzx0YxxUGZic4.md

added backtick ( `` )

* Update src/data/roadmaps/javascript/content/string@1RcwBHU3jzx0YxxUGZic4.md

---------

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
iliAsghar
2024-08-23 14:36:09 +03:30
committed by GitHub
parent 8e407c95a1
commit a81fd615d9

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 `''`, double quotation marks `""`, or backticks ` `` ` (template literals). All types of 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: