Posts Tagged ‘operators’
&& vs & and | vs ||… What’s the difference?
It seems like such a trivial thing to be talking about but not knowing the difference between the two operators can make a huge difference between working code and code that only seems to work.
Let me illustrate:
bool b = false; bool c = true; if(b & c) // do something if(b && c) // do something
Other Related Items:
Niche Modern Binary PendantDesign by Jeremy Pyles, 2003The Binary pendant is an extension of the Solitaire light and also takes its inspiration from the concept of the womb. The... Read More >
Premium BLACK Rubberized Hard Crystal Snap-on Case for Blackberry Tour 9630 CaseProtect and personalize your BlackBerry 9630 with this Crystal Rubberized Hard Case. This rubber coated case provides grip and protection by preventin... Read More >
Atari - Binary Logo Adult T-shirt in BlackAtari - Binary Logo Adult T-shirt in Black
jQuery Selectors – Looks just like CSS
Last week we took a look at the jQuery selector syntax, which allows us to select elements by their ID, class name, or tag name.
While it is pretty cool that you can select by class name, that really doesn’t buy us a whole lot. But you can do a whole lot more by using CSS style syntax.
Other Related Items:
Reebok Speed Pac 25 Adjustable Dumbbell PairReebok's Speed Pac™ Adjustable Weights give you an entire set of weights at your fingertips!Speed Pac™ is equivalent to several pairs of h... Read More >
CSS: The Missing ManualCascading Style Sheets can turn humdrum websites into highly-functional, professional-looking destinations, but many designers merely treat CSS as ... Read More >


