const urlParams = new URLSearchParams(window.location.search); // Get the values of "invitee_first_name" and "invitee_last_name" const firstName = urlParams.get('invitee_first_name'); const lastName = urlParams.get('invitee_last_name'); // Log the values to the console (you can use them as needed) console.log('First Name:', firstName); console.log('Last Name:', lastName);