Answers for "concatination in javascript"

1

how to concatenate in javscript

var one = 'Hello';
var two = 'World';

console.log(one + two);
It will print: HelloWorld

console.log(one + ' ' + two);
It will print: Hello World
Posted by: Guest on July-26-2021

Code answers related to "concatination in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language