मैं एक साधारण लूप बनाने की कोशिश कर रहा हूं:
const parent = this.el.parentElement
console.log(parent.children)
parent.children.forEach(child => {
console.log(child)
})
लेकिन मुझे निम्नलिखित त्रुटि मिलती है:
VM384: 53 अनकैप्ड टाइपर्रर: parent.children.forEach कोई फ़ंक्शन नहीं है
हालांकि parent.children
लॉग:
क्या समस्या हो सकती है?
नोट: यहाँ एक JSFiddle है ।