How to compare card values or even store them ?
I’m pulling data from an API that gives me 1 card – and then I want to compare their values to see which one is higher with the next card.. how can I do something like that ?
My values are pulled from an API and they return ‘K’ for King, or ‘5’ for 5, ‘A’ for Ace and so on.. but I’m not sure how could I compare values of different types together ?
Advertisement
Answer
You can use a dictionary.
JavaScript
x
5
1
var cards = {
2
'A' = 14, // Ace
3
'K' = 13 // King
4
}
5
Or you can use an enum like object:
JavaScript
1
6
1
const Cards = {
2
A: 14, // Ace
3
K: 13 // King
4
};
5
6