Is there any advantage or disadvantage between doing
var a = b.toString()
or
var a = b+""
from performance wise? Both works and serve the same purpose. We can think of doing it on for example a billion of strings.
Is there any advantage or disadvantage between doing
var a = b.toString()
or
var a = b+""
from performance wise? Both works and serve the same purpose. We can think of doing it on for example a billion of strings.