Skip to content

Latest commit

 

History

History
8 lines (8 loc) · 149 Bytes

default-parameter.md

File metadata and controls

8 lines (8 loc) · 149 Bytes

Default values for function parameters

function xhr(method = 'GET') {
  return method;
}
xhr();       // => 'GET
xhr('POST'); // => 'POST'