Ooo tas ir gudrs! Es to aizķeru no Dāvida emuāra.
const isRequired = () => ( throw new Error('param is required'); ); const hello = (name = isRequired()) => ( console.log(`hello $(name)`) ); // These will throw errors hello(); hello(undefined); // These will not hello(null); hello('David');
Ideja ir tāda, ka tā izmanto noklusējuma parametrus, piemēram, kā b
parametram šeit ir noklusējums, ja neko tam nesūtāt:
function multiply(a, b = 1) ( return a * b; )
Tātad iepriekš, ja nenorādīsit a name
, tā vietā izmantos noklusējumu, kas ir šī funkcija, kas rada kļūdu.