String.format is so old school
All my dev life I have used string.format("TEXT {0} MORE TEXT",variableValue) to add variable values into a string, but the other day I found the $ feature, which arrived in C# 6.
How you use string.format
var age = 64String.format("my am {0} old tod...
coopsblog.hashnode.dev1 min read