Author: ShairyPortfolio
-

MySQL data type
Data type specifies the particular type of data used with their possible value and the way of that values to be stored. Different datatype with their size and value are listed below: Data Type Maximum Size Explanation CHAR(size) Maximum size of 255 characters. A fixed-length string between 1 and 255 characters in length. Defining a…
-

Database Software
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 development because it gives high performance, cost-effective, secure, flexible and reliable. MySQL is…
-

What is Database?
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 specialist organization utilizes a data set to oversee charging, customer related issues, handle flaw information, and…
-

String Methods in ES6
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 false: String.endsWith() The endsWith() method returns true if a string ends with a specified value, otherwise false: let text = “Hello guys, welcome to my…