const a = {}
function test1 (a) {
a = {
name: 'wdd'
}
}
function test2 () {
test1(a)
}
function test3 () {
console.log(a)
}
test2()
test3()
const a = {}
function test1 (a) {
a = {
name: 'wdd'
}
}
function test2 () {
test1(a)
}
function test3 () {
console.log(a)
}
test2()
test3()