Are there any downsides to just converting stuff to strings like this way:
print(`Player name: {player.Name}`)
Instead of just doing some fancy concatenating or string.format(), I really like just using this way because it is super fast and easy
Are there any downsides to just converting stuff to strings like this way:
print(`Player name: {player.Name}`)
Instead of just doing some fancy concatenating or string.format(), I really like just using this way because it is super fast and easy
Afaik there is no downsides using this method. It is the same as setting the string using … or string.format()
No, if I recall correctly this is compiled down into a string.format()
call either way.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.