Answers for "nodejs add string to string"

2

javascript string concat vs +

It is strongly recommended to use the string
concatenationoperators (+, +=) instead of String.concat
method for perfomance reasons
Posted by: Guest on May-23-2020
0

string concat in js

let string1 = "Hello"
let string2 = "World"

let finalString = string1 + ", " + string2 + "!" // Hello, World!
Posted by: Guest on November-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language