How to run through a loop through json and find the relevant index of the value by mapping it with another array using vue js typescript?
logkeys has value [‘client’, ‘manager’, ‘server’, ‘public’, ‘network’] checkedData has value {0: ‘infomqttclient’, 1: ‘warnconfigmanager’, 2: ‘errorwebserver’, 3: ‘warnpubsusb’, 4: ‘errornetwork’} masks has value [‘info’, ‘warn’, ‘error’, ‘threadentry’, ‘tracefunc’] I want to run a loop through checkedData and find the relevant index of the value by mapping it with masks. For eg: infomqttclient has ‘info’ […]