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

PHOTO EMBED

Sat Aug 27 2022 09:12:09 GMT+0000 (Coordinated Universal Time)

Saved by @ducle1904

const distinguish = status =>
  status === '1'
    ? 'processing'
    : status === '2'
    ? 'fail'
    : status === '3'
    ? 'fail'
    : status === '4'
    ? 'success'
    : status === '5'
    ? 'cancel'
    : 'other';

console.log(senLog(distinguish('1')))
content_copyCOPY

https://anonystick.com/blog-developer/tu-duy-lap-trinh-qua-mot-vi-du-don-gian-va-ban-dang-o-dau-2019121333171660