Strings6.1 Use single quotes '' for strings. eslint: quotes jscs: validateQuoteMarks // bad const name = "Capt. Janeway"; // good const name = 'Capt. Janeway';6.2 Strings that cause the line to go over 100 characters should be written across multiple lines using string concatenation....