Skip to content

Files

Latest commit

author
Wolfram Kriesing
Jul 7, 2015
64cdc7d · Jul 7, 2015

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'