In BlackJack, cards are counted with -1, 0, 1 values:
Create a function that counts the number and returns it from the array of cards provided.
count([5, 9, 10, 3, "J", "A", 4, 8, 5]) ➞ 1
count(["A", "A", "K", "Q", "Q", "J"]) ➞ -6
count(["A", 5, 5, 2, 6, 2, 3, 8, 9, 7]) ➞ 5
0.2, 3, 4, 5, 6, 7, 8, 9, 10, "J", "Q", "K", "A".