title | category | date | topics |
---|---|---|---|
Get rid of escaping quotes with template literal |
Tip |
2021-02-23 10:02:00 +7 |
JavaScript |
You can use the template literal syntax in ES6 to get rid of escaping quote. For example:
// Instead of
const message = "It's a message";
// We can do this which is more convenient
const message = `It's a message`;