Thay thế Switch-case (Sử dụng Map())

PHOTO EMBED

Sat Aug 27 2022 08:58:41 GMT+0000 (Coordinated Universal Time)

Saved by @ducle1904 #javascript

const actions = new Map([
  ['1', ['processing']],
  ['2', ['fail']],
  ['3', ['fail']],
  ['4', ['success']],
  ['5', ['cancel']],
  ['default', ['other']]
])

const clickHandler = (status) => {
  let action = actions.get(status) || actions.get('default')
  sendLog(action[0])
}
content_copyCOPY

https://anonystick.com/blog-developer/cau-lenh-switch-co-thuc-su-tot-khong-va-2021071445929496