mirror of https://github.com/nodejs/node.git
test: change string concatenation to template
PR-URL: https://github.com/nodejs/node/pull/16919 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>pull/16919/merge
parent
ef86f2c852
commit
5bd8206b40
|
@ -20,5 +20,5 @@
|
|||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
for (var i = 0; i < 10; i++) {
|
||||
console.log('count ' + i);
|
||||
console.log(`count ${i}`);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue