AngularJS angular.forEach() Function
The angular.forEach() Function in AngularJS is used to iterate through each item in an array or object. It works similar to the for loop and this loop contains all properties of an object in key-value pairs of an object....
read more
PHP | gettype() Function
The gettype() function is an inbuilt function in PHP which is used to get the type of a variable. It is used to check the type of existing variable....
read more
What is currying function in JavaScript ?
It is a technique in functional programming, that transforms the function of multiple arguments into several functions of a single argument in sequence....
read more
PHP strtolower() Function
The strtolower() function is used to convert a string into lowercase. This function takes a string as parameter and converts all the uppercase english alphabets present in the string to lowercase. All other numeric characters or special characters in the string remains unchanged....
read more
Function overloading and Overriding in PHP
Function overloading and overriding is the OOPs feature in PHP. In function overloading, more than one function can have same method signature but different number of arguments. But in case of function overriding, more than one functions will have same method signature and number of arguments. Function Overloading: Function overloading contains same function name and that function performs different task according to number of arguments. For example, find the area of certain shapes where radius are given then it should return area of circle if height and width are given then it should give area of rectangle and others. Like other OOP languages function overloading can not be done by native approach. In PHP function overloading is done with the help of magic function __call(). This function takes function name and arguments. Example:...
read more
Arrow functions in JavaScript
Arrow function {()=>} is concise way of writing JavaScript functions in shorter way. Arrow functions were introduced in the ES6 version. They make our code more structured and readable....
read more
Node util.promisify() Method
`util.promisify()` in Node.js converts callback-based methods to promise-based, aiding in managing asynchronous code more cleanly. This alleviates callback nesting issues, enhancing code readability, and simplifying asynchronous operations through promise chaining....
read more
PHP | startsWith() and endsWith() Functions
startsWith() Function...
read more
How to convert a float number to the whole number in JavaScript ?
In this article, we will convert a float number to a whole number in JavaScript....
read more
PHP Date and Time
In this article, we will see how to get the date & time using the date() & time() function in PHP, we will also see the various formatting options available with these functions & understand their implementation through the examples....
read more
Program to find the number of days between two dates in PHP
In this article, we will see how to get the date difference in the number of days in PHP, along with will also understand the various ways to get the total count of difference in 2 dates & see their implementation through the examples. We have given two dates & our task is to find the number of days between these given dates. For this, we will be following the below 2 methods:...
read more
Javascript Window confirm() Method
The confirm() method in JavaScript displays a dialog box with a message and two buttons: OK and Cancel. It is often used to get user confirmation before proceeding with an action, returning true if OK is clicked, and false if Cancel is clicked....
read more