String Operators

+ concatenates strings.<, >, <=, >=, ==, === can also be used to compare (the Unicode values of) strings.


RESETRUNFULL
<!DOCTYPE html><html><body><script>


   console.log("a"+10+'好'); // a10好
   console.log('ac'<='bc'); // true
   console.log('a'<'abc'); // true
   console.log('a'==='a'); // true

</script></body><html>