Concatenation

In any programming language, string concatenation simply means appending one or more strings to another string. For example, when strings "World" and "Good Afternoon" are concatenated with string "Hello", they form the string "Hello World, Good Afternoon". We can concatenate a string in several ways in JavaScript.

Example:

const icon = '๐Ÿ‘‹';

// using template Strings
`hi ${icon}`;

// using join() Method
['hi', icon].join(' ');

// using concat() Method
''.concat('hi ', icon);

//  using + operator
'hi ' + icon;

// RESULT
// hi ๐Ÿ‘‹

๐Ÿ“ Task:

  • [ ] Write a program to set the values for str1and str2 so the code prints 'Hello World' to the console.

๐Ÿ’ก Hints:

  • Visit the concatenation chapter of strings for more info about string concatenation.

results matching ""

    No results matching ""