I don't understand why the first result is true and the second is false in this code:
let x = new String("testing value")
let y = 'testing value with y'
console.log(x instanceof Object); // gives true
console.log(y instanceof Object); // gives false