|
|
|
|
|
by d4n3
4123 days ago
|
|
It's way better to use [values].join('') here... It's probably faster and it coerces all values to string. If the first couple of results were numbers or booleans, they would be summed: > true + 10 + " result"
11 result
> [true,10," result"].join('')
true10 result
|
|