Property 'find' does not exist on type NodeListOf code example
Example: Property 'find' does not exist on type NodeListOf
const elements = Array.from(document.querySelectorAll('.selector'));
elements.forEach((...) => {});
const elements = Array.from(document.querySelectorAll('.selector'));
elements.forEach((...) => {});