I did finish my tutorial for reactjs and start making an webapp which stores data in a json.I was able to find my object from a json data and the object would represent something like this one:
var data={
name:<h1>Ram</h1>,
description:<p>I want to be a Developer</p>,
contact:<ul><li>66546464/li><li>66546464/li></ul>,
DOB:<h4>23.05.2017</h4>
}
I need to display in this way,but without using keys like
{data.name or data.DOB}.
Output should be like this:
<div>
<h1>Ram</h1>
<p>I want to be a Developer</p>
<ul><li>66546464/li><li>66546464/li></ul>
<h4>23.05.2017</h4>
</div>
Is it possible to display the values without knowing the key? If so,please do help me?
Critics are always welcome!