What will be the value of result after executing the following code snippet?
let str1 = 'Hello';
let str2 = 'World';
let result = str1.concat(', ', str2);
What will be the value of result after executing the following code snippet?
let str1 = 'Hello';
let str2 = 'World';
let result = str1.concat(', ', str2);