Appsheet provides CONCATENATE to merge strings. Such as in this post by @Lynn:
[CONCATENATING Dates](https://community.appsheet.com/t/concatenating-dates/10224) Tips & Tricks ?
To maintain your desired Date Formatting when concatenating dates, remember to enclose each date with TEXT() eg CONCATENATE(TEXT([DateCol1]), “and”,TEXT([DateCol2]))
Question: why use the more complicated CONCATENATE, while the & works just as well (like in JavaScript)? Is & not really supported?