References

String.concat()

Leírás

Kettő vagy több string összefűzése.

Szintaxis

concat()
concat(str1)
concat(str1, str2)
concat(str1, str2, /* …, */ strN)

Példa

const str1 = 'Hello'
const str2 = 'World'
 
console.log(str1.concat(' ', str2))
// Expected output: "Hello World"
 
console.log(str2.concat(', ', str1))
// Expected output: "World, Hello"
in this article
back to top