Question 36 of 5862%
36

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);
36/58