1. 程式人生 > >ES6引數預設值

ES6引數預設值

方式一:

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