I had my doctor’s appointment this morning, and it went well. My blood pressure was a bit low, so she advised me to reduce my blood pressure medication by half. We will monitor how this adjustment affects me over the next month. I check my blood pressure in the morning, and it tends to be low even before I take my medication. I hope that lowering the dosage will have a positive effect, especially since we decreased it about six months ago.
Additionally, I received some topical treatment for what appears to be arthritis in my hands and wrists. Given that my mom has arthritis, I can’t help but wonder if I have it as well. Fortunately, the doctor tested me for carpal tunnel syndrome, and the results were negative.
For lunch, I had some strawberries and a sandwich. We need to eat those strawberries soon before they spoil, so perhaps we can have them later for dessert.
I am working on a function that takes two arrays and returns a new array containing only their common elements. While it might sound a bit confusing at first, the approach involves using the .filter() method to iterate through one of the arrays. I will then utilize the .includes() method or a Set to verify whether each element exists in the second array. The basic structure of the code would look like this:
function arrayIntersection(arr1, arr2) { // code here }
The console.log given is:
console.log(arrayIntersection([1, 2, 3, 4], [3, 4, 5, 6])); // [3, 4]
I have come across some examples on Google, but I haven’t yet managed to write a code that successfully utilizes the console.log.
Tomorrow, Lexi will be in the city for a few days to give a theater presentation. We will be picking her up from the hotel on Saturday to kick off her Spring Break.
Taking a break from coding. I haven’t found a solution yet. But I will! Probably be tomorrow, but I will!





