欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ES6参数默认值

程序员文章站 2022-07-16 14:34:31
...

方式一:

function makeAjaxRequest(url,method){
    if(!method){//在METHOD没有值的情况下为GET
        method = "GET";
    }
    return method;//GET
}

方式二:\

function makeAjaxRequest(url,method = "get"){
    
    return method;//post,在没传值的情况下为get,
}
console.log(makeAjaxRequest('google.com'));
console.log(makeAjaxRequest('google.com',"POST"));