JavaScript Taskbook Level 2.3
Given two words, check that the last letter of the first word matches the first letter of the second word.
Given a string, find the position of the third zero in the string.
The numbers are given, separated by commas:
'12,34,56'
Find the sum of these numbers.
The date is given in the following format:
'2025-12-31'
Convert this date to the following object:
{
year: '2025',
month: '12',
day: '31',
}