Merge remote-tracking branch 'refs/remotes/adambard/master'

This commit is contained in:
Frank van Gemeren 2015-10-29 01:27:03 +01:00
commit 016f2581e9

View File

@ -101,6 +101,10 @@ false;
// Strings are concatenated with + // Strings are concatenated with +
"Hello " + "world!"; // = "Hello world!" "Hello " + "world!"; // = "Hello world!"
// ... which works with more than just strings
"1, 2, " + 3; // = "1, 2, 3"
"Hello " + ["world", "!"] // = "Hello world,!"
// and are compared with < and > // and are compared with < and >
"a" < "b"; // = true "a" < "b"; // = true