Month: March 2021

Oops

  PHP What is OOP? OOP stands for Object-Oriented Programming. Procedural programming is about writing procedures or functions that perform operations on the data, while object-oriented programming is about creating objects that contain both data and functions. Object-oriented programming has several advantages over procedural programming: OOP is faster and easier to execute OOP provides a clear structure for the programs OOP helps to keep the PHP code DRY “Don’t Repeat Yourself”, and makes the code […]

Functions

  PHP Functions PHP function is a piece of code that can be reused many times. It can take input as argument list and return value. There are thousands of built-in functions in PHP. Advantage of PHP Functions Code Reusability: PHP functions are defined only once and can be invoked many times, like in other programming languages. Less Code: It saves a lot of code because you don’t need to write the logic many times. […]

Features

  Features of PHP The main features of php is; it is open source scripting language so you can free download this and use. PHP is a server site scripting language. It is open source scripting language. It is widely used all over the world. It is faster than other scripting language. Some important features of php are given below; Features of php It is most popular and frequently used world wide scripting language, the […]

Popular Object labries in JS

JavaScript Libraries 1. D3.js Many modern websites are data driven. News sites, for example, must constantly refresh their content, making it impossible to reconfigure the setup every few seconds to support these changes. The Data Driven Documents, or D3.js, library is unique in that it puts the data first. The screenshot below shows just a few of the many data presentations you’ll find in D3.js’ visual index: Clicking an entry in the visual index takes […]

Inbuilt object in JS

JavaScript Built in Objects JavaScript has several built-in or core language objects. These built-in objects are available regardless of window content and operate independently of whatever page your browser has loaded. Array Object Multiple values are stored in a single variable using the Array object. In JavaScript, an array can hold different types of data types in a single slot, which implies that an array can have a string, a number or an object in […]

Loops

PHP Loops Often when you write code, you want the same block of code to run over and over again a certain number of times. So, instead of adding several almost equal code-lines in a script, we can use loops. Loops are used to execute the same block of code again and again, as long as a certain condition is true. In PHP, we have the following loop types: while – loops through a block […]

Loops

  PHP Loops Often when you write code, you want the same block of code to run over and over again a certain number of times. So, instead of adding several almost equal code-lines in a script, we can use loops. Loops are used to execute the same block of code again and again, as long as a certain condition is true. In PHP, we have the following loop types: while – loops through a […]

Iterator In JS

Introduction to Iterator:- Iterator is an object which allows us to access a collection of objects one at a time. The following built-in types are by default iterable − String Array Map Set An object is considered iterable, if the object implements a function whose key is [Symbol.iterator] and returns an iterator. A for…of loop can be used to iterate a collection. The following list of techniques doesn’t claim to be complete. It’ll show some […]

Data Types and Constants

PHP Data Types PHP data types are used to hold different types of data or values. PHP supports 8 primitive data types that can be categorized further in 3 types: Scalar Types (predefined) Compound Types (user-defined) Special Types   PHP Data Types: Scalar Types It holds only single value. There are 4 scalar data types in PHP. boolean integer float string   PHP Data Types: Compound Types It can hold multiple values. There are 2 […]

Next Page »