const obj = {
  property : "Tammar", 
  p: console.log("Prototype"), 
  property3 : "Val" 
};

console.log(obj.property3);
//console.log(obj)

let str = '{"name": "john", "age": 15}';
let john = JSON.parse(str);
console.log(john)

var obj1 = {
    Name : console.log("Hi")
};
Object.getPrototypeOf(obj).p
obj1.Name

Embed on website

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