यह एक जावास्क्रिप्ट प्रश्न है, जरूरी नहीं कि उल्का। for-in
का उपयोग करें वस्तुओं के माध्यम से पुनरावृति करने के लिए लूप।
// This query returns an object
var MyObject = VideoCourses.find({'_id': 'jkwehrjewrew'}).fetch()[0].videos
// The object is brings back looks like this:
// {
// first: "firstvideo.html",
// second: "secondvideo.html",
// third: "thirdvideo.html"
// };
// Use a for-in loop to iterate through the object
for(key in myObject){
console.log("this is the key: ", key, ", and this is the value: ", myObject[key]);
};