Error showing while concatenating in jquery

Error showing while concatenating in jquery

Hi,

I want to concatenate 2 values to a function

        var jj = "\"" + final3 + "\"";
        var kk = "\"" + final4 + "\"";

iam getting the value of

jj="ChIJazgekzPfBTsR5s1JlN-ZYk4"

kk="ChIJS8lvPfb8BTsRfBicz_I-A_8"

i want to concatenate this value to a function in jquery

as

initialize ( jj + ',' + kk);

this will not work

if i write like   

initialize("ChIJazgekzPfBTsR5s1JlN-ZYk4", "ChIJS8lvPfb8BTsRfBicz_I-A_8");

this will work

my requirement is to write like this

initialize( jj + ',' + kk);

I tried this way also

 initialize + '(' + jj + ',' + kk+')';

this also not working

how to solve this

Regards

Baiju