Author: admin

PHP Syntax

PHP script starts with <?php and ends with ?>, between PHP code is used to add program logic. <?php or…

PHP Introduction

PHP stands for Hypertext Preprocessor a recursive acronym. before this, Its original full form was Personal Homepage. It is a…

JSON javascript

JSON is javascript object notation, and it is a data interchange format to send and receive data from server to…

Modules JavaScript

Modules in javascript, allows to write script in different javascript files. It has following advantages: It is a javascript file,…

JavaScript Classes

In javascript, a class is a blueprint or template, hold properties (data members) and methods, used to create objects at…

Hoisting in javascript

In hoisting, javascript moves all declaration of variables, function to top as per their scope. Hoisting is javascript default behavior…

throw javascript

throw in javascript allows to create custom or user-defined error message, while using try catch to deal with runtime errors.…