To append an item to a JavaScript array, use the push() method.ExampleYou can try to run the following code to append an item:Live Demo var arr = ["marketing", "technical", "finance", "sales"]; arr.push("HR"); document.write(arr); Outputmarketing,technical,finance,sales,HR
ECMAScript allows usage of const to define constants in JavaScript. To define integer constants in JavaScript, use the const,const MY_VAL = 5; // This will throw an error MY_VAL = 10;As shown above, MY_VAL is a constant and value 5 is assigned. On assigning, another value to a constant variable shows an error.Using const will not allow you to reassign any value to MY_VAL again. If you will assign a new value to a constant, then it would lead to an error.
There are many cloud storage providers in the market, but there is only one provider who has aimed to provide cloud storage app with improved privacy and security options – MEGA. Kim Dotcom’s cloud storage service Mega version 1.1, the official iOS app, has just got its first update with two new features – PhotoSync and passcode lock.PhotoSyncIf user wish to store their images, videos and other data in the cloud there is now no shortage of providers to select from. The major apps Dropbox, Google Drive, Box or Microsoft’s Skydrive basically give much related services, but lesser-known alternatives are ... Read More
The top most company in the world – Google announced on its Google+ page that the latest version of voice search command is available which is based on relationships. This voice search command enhances its voice-recognition feature and allows user to make calls, send messages, and search using voice commands.Google has given this interesting feature to Android. That’s why, Android now available with relationship based – voice search command feature which facilitates Android user to make calls and sending messages directly via voice commands for contacts that have been associated with their relationship to the user. In other word, Android ... Read More
Google has become a partner of virtualization software maker VMware said that their partnership aim is to make easier for the enterprise Chromebook users to access Windows apps and the Windows desktop into their own platform. Now it has become easier for Chromebook users to experience Windows desktop using VMware’s Horizon desktop as a service (DaaS) which utilizes HTML5 Blast protocol of VMware.VMware will help to the Google’s Chromebooks by providing virtual desktop services to Google’s Chromebooks, which facilitates them to run Windows applications on the pared-down laptops of the Chrome OS.By using different – different VMware virtualization service, companies ... Read More
Microsoft collaborated with GW Micro, this collaboration brought GW Micro’s Window-Eyes screen reader tool which will be available at free of cost to Office users.GW Micro’s Window-Eyes facilitates blind or visually harmed user to access Windows based computers by speaking the contents of the computer’s screen. This tool allows blind users to access all applications like; word processors, Internet, email, etc. Window-Eyes provides full command on what user hear, when to hear, and how to hear.Microsoft said that, users who have licensed version of Microsoft Office 2010, Office 2013 or Office 365 on their systems can only take the advantage ... Read More
It usually happens that when somebody is sleepy their mobile phones becomes inactive, which reflect millions of strength-full processors become idle for that interval of time. Samsung newly collaborated with University of Vienna to create a unique alarm clock app called Power Sleep. Power Sleep is a latest Android app that permits mobile phone users to give the processing power of their devices to scientific research at the time of sleeping.Power Sleep lets people donate small bits of their mobile CPU power, so that a large “supercloud computer” can use that power for a scientific research on curing diseases such ... Read More
There is an old adage in early education teaching that for the first 5-6 years students learn to read, for their reminder in school they read to learn. The realities are true in comparing the illiterate to the computer illiterate, since they stem from two different sets of problems. The illiterate would not be able to function or learn at the same capacity as someone who is already educated and just needs to learn about how the computer itself works.Illiteracy in this country and around the worldIlliteracy based on the last government statistic pegged 32 million individuals unable to perform ... Read More
Facebook celebrated its 10th anniversary with interesting feature; Look Back video, which facilitates users to gather together all their important memories associated in their account life from when they joined and presents them in a cheesy. Depends on from how long user has been on Facebook and how much user has shared, this feature facilitates to see a movie, a collection of photos or a thank you card. It has become great memorable feature loved by everyone. It brings together all scraps; pictures, status updates, life events in front of everyone who has linked with their social networking site in ... Read More
The best and fastest way to concatenate strings in JavaScript is to use the + operator. You can also use the concat() method.ExampleYou can try to run the following code to concatenate strings in JavaScriptLive Demo JavaScript Concatenation var str1 = "Hello"; var str2 = "World"; var res = str1 + str2; document.write(res);
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP