From 61235146b68a7c28b0313276447dd76d1a549e62 Mon Sep 17 00:00:00 2001
From: Mathias Bynens
Ordinary string literals may not span multiple lines.
-Use template strings (delimited with `
) over complex string
+
Use template literals (delimited with `
) over complex string
concatenation, particularly if multiple string literals are involved. Template
-strings may span multiple lines.
If a template string spans multiple lines, it does not need to follow the +
If a template literal spans multiple lines, it does not need to follow the indentation of the enclosing block, though it may if the added whitespace does not matter.