In order to concatenate two strings in jQuery concatenate the strings using + consternation operator. You have to follow a sequence of codes soon after it. Once it is done, the strings get concatenate. There are some other alternatives as well.

BY Best Interview Question ON 07 Jul 2019

Example

var a = 'Best Interview';
var b = 'Question';
var result = a + b;

// output
Best Interview Question