Daily Archives: May 26, 2009

Nokia E71 Memory card not detected as disconnects from PC Suite

Few days back I purchased a New E71. I face a weired issue with the phone when ever I connect to PC Suite via USB and after work  disconnects it from USB It stop reading Memory card. After restart the … Continue reading

Posted in Mobile, Troubleshoot | 2 Comments

Remove element from Array

What if you want to delete an element from Array ?? Mostly people use delete command  but it leaves undefined behind it >>> var list = [1,2,3]; >>> delete list[1]; >>> list [1, undefined, 3] Now try splice instead of … Continue reading

Posted in javascript | Leave a comment