下面console.log输出的是什么?

    1. const a = {}
    2. function test1 (a) {
    3. a = {
    4. name: 'wdd'
    5. }
    6. }
    7. function test2 () {
    8. test1(a)
    9. }
    10. function test3 () {
    11. console.log(a)
    12. }
    13. test2()
    14. test3()