Which variables in the code below are global?
const a = 0;
const b = 1;
let c = 10
function sum() {
const d = 1;
let e = 0;
return a + b + c + d + e;
}Which variables in the code below are global?
const a = 0;
const b = 1;
let c = 10
function sum() {
const d = 1;
let e = 0;
return a + b + c + d + e;
}Create a free account to access the full topic