var person = {
    name : "Praveen",
    rollno : "521",
    mail : "praveen8642kumar@gmail.com"
}

const {name,rollno,mail} = person;
console.log(name);
console.log(mail);

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: