Men3m
_hello
_about-me
_projects
_contact-me
_hello
_about-me
_projects
_contact-me
_name:
_email
_message
1
const
button
=
document
.
querySelector
(
'#sendBtn'
);
2
3
const
message
=
{
4
name:
"Jonathan Davis"
,
5
email:
"jonathan-davis@gmail.com"
,
6
message:
"Hey! Just checked your website and it looks
awesome! Also, I checked your articled on Medium, Learned
few nice tips. Than|"
,
7
date:
"Thu 21 Apr"
8
}
9
10
button
.
addEventListener
(
'click'
, ( )
=>
{
11
form
.
send
(
message
);
12
})