单项选择题

let c = { greeting: "Hey!" };let d;d = c;c.greeting = "Hello";console.log(d.greeting);()

A.Hello
B.undefined
C.ReferenceError
D.TypeError