Iteruj po tablicy obiektów

Mam taki łańcuch JSON

 var json =  '{ "Comments": 
    [
      { "Id" : 1,"Comment" : "Test comment","Name" : "Yogesh","Child" : 0},
      { "Id" : 2,"Comment" : "Test comment II","Name" : "Yogesh","Child" : 0}
    ] 
    }';

i próbuję iterować obiekty jako takie:

var parsedJSON = $.parseJSON(json);

var html = "";    
for (comment in parsedJSON.Comments) {
  html += "Id: " + comment.Id;
  html += "Comment: " + comment.Comment;
  html += "Name: " + comment.Name;
  html += "Child: " + comment.Child;
  html += "<br/>";
}

Ale tucomment staje się pętlą for0 i1 tylko, mam na myśli nie obiekt, ale łańcuch, jak mogę iterować po tej tablicy?

questionAnswers(5)

yourAnswerToTheQuestion