🔥 String จะใช้ ‘ ’ , “ ” หรือ ` ` ?
.
ในการประกาศค่าให้กับตัวแปรชนิด string ใน JavaScript เพื่อน ๆ น่าจะเคยเห็นหรือใช้ทั้ง ‘ ’ (single quote) และ “ ” (double quote) ซึ่งทำงานได้เหมือนกันทุกประการ ขึ้นอยู่กับความชอบของแต่ละคน โดยจุดที่แตกต่างกันคือ
.
✅ ‘ ’ (single quote) ต้องใช้ Escape character สำหรับพิมพ์ single quote
.
✅ ส่วน “ ” (double quote) ต้องใช้ Escape character สำหรับพิมพ์ double quote
.
🚀 จากสองแบบข้างต้นก็จะทำให้ความยากง่ายในการประกาศค่าตัวแปร string ต่างกันออกไปขึ้นอยู่กับว่าเป็นประโยคแบบไหน เราก็สามารถเลือกใช้ตามความเหมาะสมได้
.
แต่ยังมีอีกเครื่องหมายนึงที่ใช้ประกาศค่า string ได้ ก็คือ ` ` (backtick) ก็คือเครื่องหมายที่อยู่ปุ่มเดียวกันกับปุ่มตัวหนอนที่มักใช้สำหรับเปลี่ยนภาษากันนั่นเอง ส่วนการนำไปใช้งานนั้น
.
✅ ` ` (backtick) ไม่ต้องใช้ Escape character ในเวลาที่พิมพ์ทั้ง single quote และ double quote
.
เพื่อน ๆ จะสังเกตเห็นได้ว่าการใช้ backtick นั้นช่วยให้การประกาศค่า string นั้นทำได้ง่ายขึ้น และโค้ดอ่านได้ง่าย แต่ท้ายที่สุดแล้วก็วนกลับไปที่ความถนัดของแต่ละคนหรือสไตล์ที่คนในทีมเลือกใช้กัน ที่จะเป็นตัวตัดสินว่าเราจะเลือกใช้รูปแบบไหนในการเขียนโค้ดของเราออกมา
.
สำหรับเพื่อน ๆ คนไหนที่สนใจเรียนพื้นฐานแบบก้าวกระโดดสำหรับ JavaScript สามารถเข้าไปเรียนได้แบบฟรี ๆ ไม่ต้องเสียค่าใช้จ่ายที่นี่เลยคร้าบ >>
https://academy.borntodev.com/p/introduction-to-javascript
.
👍 หากเพื่อน ๆ ชอบหรือถูกใจ อย่าลืมกดไลค์ กดแชร์เพื่อเป็นกำลังใจให้พวกเราด้วยนะคร้าบบ <3
.
#borntoDev - 🦖 สร้างการเรียนรู้ที่ดีสำหรับสายไอทีในทุกวัน
同時也有10000部Youtube影片,追蹤數超過2,910的網紅コバにゃんチャンネル,也在其Youtube影片中提到,...
「string escape character」的推薦目錄:
- 關於string escape character 在 BorntoDev Facebook 的最佳貼文
- 關於string escape character 在 コバにゃんチャンネル Youtube 的最佳解答
- 關於string escape character 在 大象中醫 Youtube 的精選貼文
- 關於string escape character 在 大象中醫 Youtube 的最佳貼文
- 關於string escape character 在 How to write escape character to string? - Stack Overflow 的評價
- 關於string escape character 在 Escape Sequences - Definition & Usage | AutoHotkey v2 的評價
- 關於string escape character 在 How to escape special characters in a string? - Unix ... 的評價
- 關於string escape character 在 scala/bug - escape does not work with string interpolation 的評價
string escape character 在 コバにゃんチャンネル Youtube 的最佳解答
string escape character 在 大象中醫 Youtube 的精選貼文
string escape character 在 大象中醫 Youtube 的最佳貼文
string escape character 在 Escape Sequences - Definition & Usage | AutoHotkey v2 的推薦與評價
The escape character ` (back-tick or grave accent) is used to indicate that the character immediately following it should be interpreted differently than it ... ... <看更多>
string escape character 在 How to escape special characters in a string? - Unix ... 的推薦與評價
You can use the printf builtin with %q to accomplish this. For example: $ file="Dr' A.tif" $ printf '%q\n' "$file" Dr\'\ A.tif $ file=' foo$bar\baz`' ... ... <看更多>
string escape character 在 How to write escape character to string? - Stack Overflow 的推薦與評價
... <看更多>
相關內容