Comment on ES6 in Depth: DestructuringparentComments−jeswin11yTemplate strings (https://developer.mozilla.org/en/docs/Web/JavaScript/Referen...) use backticks, instead of double/single quotes. let a = `${foo}`; //Template string var b = "${foo}"; //same as in 5.−chrisdevereux11yI stand corrected. Thanks.
Comments
Template strings (https://developer.mozilla.org/en/docs/Web/JavaScript/Referen...) use backticks, instead of double/single quotes.
I stand corrected. Thanks.