so if for example i have a object called Persona and it has the followed property
var person = { name: 'Derwyn', age: '40', occupation: student };
i would like to check all those properties in that object and if the object has a name (in this case it has) i will take that name (Derwyn) and use it in a string to form the sentences
hello my name is Derwyn, im 40 years old and im currently a student.
i tried a for in and a "hasOwnProperty" but after checking it only shows true or false, i need to hold the property in a variable