Software Engineering Learn about sending Push notification using Push API The Push API gives web applications the ability to receive messages pushed to them from a server on a user agent
Software Engineering Learn to work with files on the Web using File API With HTML5 file API it is possible for JavaScript to process a file locally, e.g. compress, encode or encrypt it
Software Engineering Fundamental Data Types in C++ In C++, there are 6 fundamental data types namely char (character), int (integer), float, bool (boolean), double and void.
Software Engineering Start using Local Storage in JavaScript in Browser Local storage is a key value storage such that you can store a data as a set of size 2 such as {key, value}. To get the value back, we need to pass key, then we get back value.