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

PHOTO EMBED

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

Saved by @ducle1904

const clubs = {
    cr7: ['mu', 'juve'],
    ibrahimovic: ['AC Milan', 'InterMilan'],
    Bale: ['Tottenham', 'Roma']
}

function test(player) {
      return clubs[player] || [];
}

console.log('result 3--', test('Bale')); // "result 3--", ["Tottenham", "Roma"]
content_copyCOPY

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