You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Call toString() on all the non-null input arguments.
For the null behavior, we could go one of three ways:
if any of the inputs are null, return null
if all of the inputs are null, return null
return an empty string, if all inputs are null
Update from 2020/04/23:
We decided to go with the first option. All inputs are required, so if any are missing, we will return null. This will be more consistent with other functions, and make the strings within concat more consistently parseable.
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Part of #51556
Call
toString()
on all the non-null input arguments.For the null behavior, we could go one of three ways:
Update from 2020/04/23:
The text was updated successfully, but these errors were encountered: