continue works only in loops with an array (for (...)), how to make continue in a loop with an object? return exits the function, break completes the loop, but do I need to go to the next iteration in the loop on the object?
for (key in obj) { if (typeof obj[key] == 'function') { continue; } path += '.' + key; if (typeof obj[key] == 'string' && obj[key] == this.hash) { this.linkToHash.push(path); continue; } if (typeof obj[key] == 'object') { this.findHash(obj[key], path); path = objPath; } }