What value is obtained when executing the following code?
const values = [true, false, true];
const inverses = values.map(x => !x);
console.log(inverses[2]);
What value is obtained when executing the following code?
const values = [true, false, true];
const inverses = values.map(x => !x);
console.log(inverses[2]);