Question: Implement and test getRandomCard(), and getRandomSuit() method per comments using/calling this getRandomNumber function: getRandomNumber: function(min, max) { // Generate a random integer between min

Implement and test getRandomCard(), and getRandomSuit() method per comments using/calling this getRandomNumber function:

 " getRandomNumber: function(min, max) { // Generate a random integer between min (included) and max (excluded) let randomNum = Math.random() * (max - min) + min; return Math.floor(randomNum); } "
 
const cardObject = { _intervalID: null, _counter: 50, _cards: "ace,2,3,4,5,6,7,8,9,10,jack,queen,king".split(","), _suits: "clubs diamonds hearts spades".split(" "), getRandomCard: function() { // TODO [H]: Return a random card value from the cards array // TODO [H]: If card is 0, then use 10 to account for actual image file  // Hint: Generate a random array index value for the cards array }, getRandomSuit: function() { // TODO [I]: Return a random suit value from the suits array  // Hint: Generate a random array index value for the suits array }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!