Question 32 of 5262%
32
What will the following JavaScript code output?
let n1 = 111;
let n2 = new Number(123);
let n3 = Number(123);
n1.prop = true;
n2.prop = true;
n3.prop = true;
console.log(n1.prop);
console.log(n2.prop);
console.log(n3.prop);
32/52