blob: aa61f5ec668b83fd8ff5c7448803f670828d2fe0 [file] [log] [blame]
function a(p=20) {
}
function b(p, q=30) {
}
function c(p, q=30, ...r) {
}
(p = 20) => { };
(p = 20, ...q) => { };