Global variable

Report a typo

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;
}
Select one or more options from the list
___

Create a free account to access the full topic