let a = {}
let b = a
a.v = 1
b.v = 2
console.log(a.v)
I don’t understand the use of the dot here.
Do you know what that means ?
I tried to console log it
Blancer.com Tutorials and projects
Freelance Projects, Design and Programming Tutorials
let a = {}
let b = a
a.v = 1
b.v = 2
console.log(a.v)
I don’t understand the use of the dot here.
Do you know what that means ?
I tried to console log it