if (inputPassword === commentToDelete.password) { const filteredComments = comments.filter((comment) => comment.time !== commentToDelete.time); localStorage.setItem("comments", JSON.stringify(filteredComments)); loadComments(); alert("댓글이 삭제되었습니다."); } else { alert("비밀번호가 일치하지 않습니다."); } 댓글 삭제기능을 구현하는데 time 속성을 사용하는 이유에 대해 궁금해졌다.인덱스가 있는데 왜 time 속성으로 filter하는걸까? time 속성을 사용하는 이유는 각 댓글이 유일한 시간을 가지..