jQuery selector query vs nested condition

61 Views Asked by At

This is related to performance, I was wondering does nested if-else statement perform faster than jQuesy selectors query or is is the other way around?

if (valid)
{
    // do something
}
else if ($(something).parent().data('somePlugin').options.data1 > 0)
{
    error = 'Must be larger than ' + $(something).parent().data('somePlugin').options.data1;
}
else if ($(something).parent().data('somePlugin').options.data2 < 0)
{
    error = 'Must be larger than ' + $(something).parent().data('somePlugin').options.data2;
}

VS

if (valid)
{
    // do something
}
else 
{
    $plugin = $(something).parent().data('somePlugin');

    if ($plugin.options.data1 > 0)
    {
        error = 'Must be larger than ' + $plugin.options.data1;
    }
    else if ($plugin.options.data2 < 0)
    {
        error = 'Must be larger than ' + $plugin.options.data2;
    }
}
0

There are 0 best solutions below