What value is obtained by executing the following code?
function test() {
return;
return "This is a test";
}
console.log(test());
What value is obtained by executing the following code?
function test() {
return;
return "This is a test";
}
console.log(test());