MySQL MySQL is a very popular high-speed data processing and open-source RDBMS which is used widely such as Facebook, Google, Twitter and Adobe. It uses structured query language(SQL) and it is written in C and C++. It is mainly used in web... READ MORE >>
Database is a collection of data store in one place; it is precise assortment of information. For Example: An online phone catalog utilizes a data set to store information of individuals, telephone numbers, and other contact subtleties. Your power... READ MORE >>
String.includes() The includes() method returns true if a string contains a specified value, otherwise false: String.startsWith() The startsWith() method returns true if a string begins with a specified value, otherwise... READ MORE >>
Template Literals in ES6 The template literal has made it easier to include variables inside a string. const first_name = "shairy"; const last_name = "kalra"; Before ES6 console.log('Hello ' + first_name + ' ' +... READ MORE >>
Recent Comments