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"));