Back-tick vs single quote in js
the back-tick allows you to use string templating for example: var value = 4; var str = `text with a ${value}` // str will be : ‘text with a 4’ for ” vs ‘ I say look at this post: https://stackoverflow.com/a/9959952/6739517 As for performance, it seems like it would be the same if you are … Read more