jadjoubran / codetogo.io

🚀 JavaScript code to go - Find updated snippets for common JavaScript use cases
https://codetogo.io
MIT License
233 stars 30 forks source link

Use Case Suggestion: String Interpolation #339

Closed Dodoodilee closed 8 months ago

Dodoodilee commented 10 months ago

let language = "JavaScript"; I am learning ${language}; //"I am learning JavaScript";

remember we use tempelate strings for this :)

this is a template string "this is a normal string"

as you can see now the difference between normal and template strings :D