if-statement Questions - SnippetGood most recent 30 from http://snippetgood.com 2010-07-29T23:54:58Z http://snippetgood.com/feeds/tag/if-statement http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://snippetgood.com/questions/89/if-statements-and-ranges If statements and ranges miss snippet 2009-10-13T17:23:45Z 2009-11-11T04:45:33Z <p>I have a JQuery script that I'm working on and in part of it, I am comparing a value to make sure it is within a specific integer range.</p> <p>This is what my first attempt looks like:</p> <pre><code>if (levelCounter &lt; 0) { levelCounter = 0; } if (levelCounter &gt; maxLevels) { levelCounter = maxLevels;} </code></pre> <p>I'm hoping there's a shorter more efficient way to do this - I can't think of it off the top of my head.</p>