id | keywords | name | summary | category | ||||
---|---|---|---|---|---|---|---|---|
string-concatenation |
| ++ | This is the `string concatenation` operator. | operators |
This operator concatenates two strings together.
<CodeTab labels={["ReScript", "JS Output"]}>
letgreetings="Hello "++"world!"
vargreetings="Hello world!";