I have this object in javascript.
info = { bio: {Age:21,Name:"John",Gender:"Male"}, qualification:{matricscore: 92, highschool: 80} }
I want to create a new object profile in which I want the value of the key bio. It will look somewhat like this.
profile = { Age:21,Name:"John",Gender:"Male" }
What should I do?