function a(str) {
console.log(str) // =》 helloworld
console.log(a.s) // =》 helloworld
}
a(a.s = 'helloworld')
赋值语句作为实参传递的时候,为什么会选左值作为实参
console.log(str) // =》 helloworld
console.log(a.s) // =》 helloworld
}
a(a.s = 'helloworld')
赋值语句作为实参传递的时候,为什么会选左值作为实参
