var tst01 = 'I am a Simple String'; // This is an empty string var tst02 = ''; // Single quotes are also escape char, for other quotes. // Don't ask me why. var tst03 = 'Don''t ask me why.'; // This is an single quote in string form => ' var tst04 = ''''; // For this multi line string blanks are NOT honored'; var tst05 = 'For this multi line string + blanks are NOT honored'; // 'For this multi line blanks are honored' var tst06 = 'For this multi line string - blanks are honored'; // Normal String concatenation rules also apply var tst06 = 'Normal' + 'String concatenation' + ' rules also apply'; // "Backslash are not escape chars" // \SQA\Reports\Motor-negotiables.csv var tst07 = '\SQA\Reports\Motor-negotiables.csv';