I have to pass aaa to ehi() function in the mitt parameter.
aaa is an array of numbers like: 29837,127365,5645,12323,47656564,2312,4534,2343
This is the correct way that the ehi() works:
function ehi(aaa) {
love({functionality: 'kiss',
mess: 'yuhuuuuuu',
mitt: '29837,127365,5645,12323,47656564,2312,4534,2343'
});
}
I need to substitute 29837,127365,5645,12323,47656564,2312,4534,2343 with aaa.
How can I do that ?
Array‘s has ajoin()method which calls thetoString()of each element and concatates them with the joiner specified.