hey after looking in mdn Object.create() MDN Im trying to duplicate their example but it doesnt work
here is what I tried and what I got
const oTest = {a:1,b:2}
const test1 = Object.create(oTest)
console.log(oTest) //{a: 1, b: 2}
console.log(test1 ) //{}
I expected test1 to console {a: 1, b: 2}