Workaround jQuery code snippet to skip next interation in a loop. Just documenting this code snippet, no demo sorry.
//output keys=values. eg [1]=[2], [3]=[4] etc, skips undefined keys
var i = 0;
$.each(array, function(key, val)
{
if (webTrendsParams[i]) {
console.log(array[i] + ' = ' + array[i+1]);
}
i = i + 2;
});
Sam Deering
View AuthorSam Deering has 15+ years of programming and website development experience. He was a website consultant at Console, ABC News, Flight Centre, Sapient Nitro, and the QLD Government and runs a tech blog with over 1 million views per month. Currently, Sam is the Founder of Crypto News, Australia.
jQuery
Share this article