I have my passport! This trip is coming soon. I’m excited.
I’m currently on my laptop. I wonder if I should buy a cheap backup mouse. Would that be even worth it?
I finished the card counting code for JavaScript. It took a lot of Googling. I will have my code below. I spent my day doing that. I’m now going to watch a few YouTube videos. Tasting History just came out with a new video. Then I’m going to read. Tommy and Chris are going to the movies tonight, so I’ll spend the night reading. I’m reading the third book in the Harry Dresden series. It’s fantasy fiction. I like it. Another book came up from my holds list in the library. Beach Reads. Another romance book that was recommended. But I want to finish what I’m reading now first.
Alex is playing a video game. I can feel the bass from the living room. I still need to put away the laundry. Maybe I will do that now. Bring my laptop into the bedroom and watch YouTube and fold laundry. Alright. That’s my plan for right now. 🙂
Oh! Before I forget.. my code (we only had to do the switch and if/else statement):
let count = 0; function cc(card) { switch(card) { case 2: case 3: case 4: case 5: case 6: count++; break; case 10: case 'J': case 'Q': case 'K': case 'A': count--; } if(count > 0) { return count + " Bet"; } else { return count + " Hold"; } }