PHP Syntax
PHP script starts with <?php and ends with ?>, between PHP code is used to add program logic. <?php or…
PHP script starts with <?php and ends with ?>, between PHP code is used to add program logic. <?php or…
PHP stands for Hypertext Preprocessor a recursive acronym. before this, Its original full form was Personal Homepage. It is a…
JSON is javascript object notation, and it is a data interchange format to send and receive data from server to…
Modules in javascript, allows to write script in different javascript files. It has following advantages: It is a javascript file,…
In javascript, a class is a blueprint or template, hold properties (data members) and methods, used to create objects at…
Arrow function in javascript uses => arrow symbol and no function keyword. due to this, syntax become shorter and more…
this keyword in javascript plays different role according to context. this is a javascript keyword, so it cannot be used…
javascript by default run on non-strict mode, in this mode undeclared variable, function same parameters and so many things are…
In hoisting, javascript moves all declaration of variables, function to top as per their scope. Hoisting is javascript default behavior…
throw in javascript allows to create custom or user-defined error message, while using try catch to deal with runtime errors.…