Open MrDesjardins opened 6 years ago
Here is a suggestion: Transforming concatenated string into string interpolation.
E.g.
var lyrics = 'Never gonna give you up'; var html = '<div>' + lyrics + '</div>';
When the user goes on the second line and uses the "transform to interpolated string" in God mode, the code becomes:
var lyrics = 'Never gonna give you up'; var html = `<div>${lyrics}</div>`;
Here is a suggestion: Transforming concatenated string into string interpolation.
E.g.
When the user goes on the second line and uses the "transform to interpolated string" in God mode, the code becomes: