Simulating named parameters

PHOTO EMBED

Mon Mar 01 2021 03:05:18 GMT+0000 (Coordinated Universal Time)

Saved by @MattMoniz #javascript

const notify = (msg, { type = 'info', timeout, close = true } = {}) => {
  // display notification
}

notify('Hi!')
notify('Hi!', { type: 'error' })
notify('Hi!', { type: 'warn', close: false })
content_copyCOPY

https://www.benmvp.com/blog/learning-es6-12-tricks-for-es6-fun/