默认赋值:预先给函数的参数一个值

    1. function go(type="get"){
    2. console.log(type)
    3. }
    4. go()
    5. go("post")

    image.png