Official Google Blog: Launching Google Wallet on Sprint and working with...: In May we announced Google Wallet —an app that makes your phone your wallet—with Citi, MasterCard, Sprint and First Data. With Google Wallet...
Wednesday, September 28, 2011
Number of elements in a javascript object
Number of elements in a javascript object
Although JS implementations might keep track of such a value internally,
there's no standard way to get it.
On Mozilla-browsers, you can use the non-standard
On Mozilla-browsers, you can use the non-standard
__count__
, but for cross-browser
scripting you're stuck with explicitly iterating over the properties and
checking hasOwnProperty()
:function countProperties(obj) {
var count = 0;
for(var prop in obj) {
if(obj.hasOwnProperty(prop))
++count;
}
return count; }
For more info: http://stackoverflow.com/questions/956719/number-of-elements-in-a-javascript-object?answertab=votes#tab-top
Tuesday, September 27, 2011
12th edition of Virtual TechDays
Hi,
The upcoming edition of Virtual TechDays, 28-30 September, will have dedicated tracks for Developers, IT Pros and Architects.
To join in, REGISTER at http://www.virtualtechdays.com/registration1.aspx
Thanks!
The upcoming edition of Virtual TechDays, 28-30 September, will have dedicated tracks for Developers, IT Pros and Architects.
To join in, REGISTER at http://www.virtualtechdays.com/registration1.aspx
Thanks!
Monday, September 26, 2011
Sunday, September 25, 2011
Friday, September 23, 2011
Thursday, September 22, 2011
Fly Or Die: G+ Or Facebook? Who Flew Higher?
Tweet
F8 is afoot and it looks like Facebook schooled the Internet. But what about G+ and, most important, the new features added to head Facebook off at the pass.
More on: http://techcrunch.com/2011/09/22/fly-or-die-g-or-facebook-who-flew-higher/
F8 is afoot and it looks like Facebook schooled the Internet. But what about G+ and, most important, the new features added to head Facebook off at the pass.
More on: http://techcrunch.com/2011/09/22/fly-or-die-g-or-facebook-who-flew-higher/
Be the change.: Farewell Teacher - TalentSprint's PL/SQL trainees ...
Be the change.: Farewell Teacher - TalentSprint's PL/SQL trainees ...: Dear All, We the trainees all our brains are like tables from different Schema’s and with no sufficient data in it. Santanu as a DBA, in...
Friday, September 16, 2011
Latest Top Tech Information and News Provider Sites
Latest Top Tech Information and News Provider Sites, here we go:
http://www.mashable.com
http://www.techcrunch.com
http://www.trendhunter.com
http://www.alltop.com
http://dailytech.com
http://engadget.com
http://www.codeproject.com
http://www.developerfusion.com
http://www.stackoverflow.com
http://www.asp.net
http://www.informationweek.com
http://pcworld.com
http://www.readwriteweb.com
http://www.wired.com/
http://www.mashable.com
http://www.techcrunch.com
http://www.trendhunter.com
http://www.alltop.com
http://dailytech.com
http://engadget.com
http://www.codeproject.com
http://www.developerfusion.com
http://www.stackoverflow.com
http://www.asp.net
http://www.informationweek.com
http://pcworld.com
http://www.readwriteweb.com
http://www.wired.com/
Thursday, September 15, 2011
Subscribe to:
Posts (Atom)