_contact-me
1const button = document.querySelector('#sendBtn');23const message = {4 name: "Jonathan Davis",5 email: "jonathan-davis@gmail.com",6 message: `Hey! Just checked your website and it looks awesome! Also, I7 checked your articled on Medium. Lerned a few nice tips.8 Thanks!`,9 date: ""10}1112button.addEventListener('click', () => {13 form.send(message);14})